Skip to content

Instantly share code, notes, and snippets.

@inertia186
Last active December 4, 2021 01:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save inertia186/b88e7bfff8862858e54c59392e2bce20 to your computer and use it in GitHub Desktop.
Save inertia186/b88e7bfff8862858e54c59392e2bce20 to your computer and use it in GitHub Desktop.
Tin Toy - A tiny Hive testnet based on tinman
Tin Toy for Hive. Please have a look at the README.md file or check it out on Docker Hub: https://hub.docker.com/r/inertia/tintoy/

Tin Toy

Tin Toy - A tiny Hive testnet based on tinman

Quickstart

docker run -d -p 8090:8090 inertia/tintoy:latest

Using -p 8090:8090 will expose json-rpc.

... or ...

docker run -d -P inertia/tintoy:latest

Using -P will expose all of the ports, ephemerally (see below).

As Seen from Kitematic

kitematic

If you want to modify the scripts before deploying:

git clone https://gist.github.com/b88e7bfff8862858e54c59392e2bce20.git tintoy
cd tintoy
docker build -t myname/tintoy:mybranch .
docker run -d -P myname/tintoy:mybranch

For example, you can modify the first line of Dockerfile to switch versions of hived.

Tin Toy uses:

FROM hiveio/hive:latest

But you can switch to any branch and try it out. Suggested branches to try can be found in hive/activity.

Say we want to take a look at a branch like v0.23.0-mira. Change the first line of the Dockerfile to:

FROM hiveio/hive:v0.23.0-mira

Then build and run. At the time of writing, tag v0.23.0 was the only other tagged docker image available.

Shell In

  • Use docker ps to get the name of the existing container.
  • Use the command docker exec -it <container name> /bin/bash to get a bash shell in the container.

How to Use

Once the docker container has fully deployed, you'll have access to various port. Internally, the docker container responds to:

Port Purpose
2001 p2p
8080 condenser
8090 nginx json-rpc
8091 jussi json-rpc
8092 hived json-rpc
8093 hivemind json-rpc
5000 tinman server (if enabled)

If you launched with -P (ephemeral ports enabled), you can get a list of ports:

docker ps

Which might return something like:

CONTAINER ID        IMAGE                   COMMAND                  CREATED             STATUS              PORTS                                                                                                NAMES
290810dba18e        inertia/tintoy:latest   "/bin/sh -c /app/boo…"   5 minutes ago       Up 5 minutes        0.0.0.0:32832->2001/tcp, 0.0.0.0:32831->8080/tcp, 0.0.0.0:32830->8090/tcp, 0.0.0.0:32829->8091/tcp   tintoy

Embedded Condenser

From the port list we can determine the external port for condenser. For port 8080, this example uses port 32831. Therefore, the URL to access condenser is:

http://localhost:32831

Remember, this changes whenever you execute with -P.

Default Secret Key

Normally, the secret key for a testnet is kept secret. But for a local testnet, there's no reason to keep it a secret. For tintoy, the default secret key is set in the Dockerfile:

ENV SHARED_SECRET tintoy

Which means, if you want to derive the private keys for tnman, you could use the following command:

get_dev_key tintoy owner-tnman active-tnman posting-tnman memo-tnman | jq
[
  {
    "private_key": "5K5kjWq8pY23YptZaiEkiiaKi1wafufj63nzAtaDu1epVXw9fvz",
    "public_key": "TST7uubH7SpknapasQTzW1rFho3LUn1pFmdR7X4f1cHmK22aTJYm3",
    "account_name": "owner-tnman"
  },
  {
    "private_key": "5K3NwkFwCnsSfJNACw1qm3zzojWBtP8k4rTb2kbLQ4DDR6TgGnw",
    "public_key": "TST4w9GXogQtqPprzPhp7WKZPPKWXv4KvqqMMgd5agJQCDtYLBJwA",
    "account_name": "active-tnman"
  },
  {
    "private_key": "5Jrdrbt5xfjVeHfHd5JMiJy1FfrGtuieRvzr9WFYhcdHpjgfwPY",
    "public_key": "TST883nSqJL5KbVgfdV44snPPDTStQQxfR7vj8XttsZo25sXvHAnQ",
    "account_name": "posting-tnman"
  },
  {
    "private_key": "5KB3ddeh5o3WghSM3qQaUthxVt7QZWfNYCoiAW3XYfeDki1oH9z",
    "public_key": "TST56jtUgZrajuBUgdECYaew6cebjSbKWVdtCKkc4xxLAFZQ9f8A9",
    "account_name": "memo-tnman"
  }
]

Every account on the testnet uses tnman as their account authority. Using this account, you can sign any transaction for any account.

Snapshot Refresh

Occasionally, it's a good idea to refresh the sample-snapshot.json file. This process is usually only required to be performed by the repo maintainer, but if you want to do it yourself, here are the steps:

  1. Install tinman by following that product's README.md.
  2. Next, generate a new snapshot.
  • Example: tinman snapshot -s https://anyx.io -o - | pv > snapshot.json
  1. Once we have our new snapshot, create a sample, overwriting the previous one.
  • Example: tinman sample -i snapshot.json -o sample-snapshot.json
  1. Delete (or move) snapshot.json (we don't need it anymore now that we have sample-snapshot.json).

Tin Toy

#!/bin/bash
source $APP_ROOT/env.sh
# chown -R hived:hived $HOME
mkdir -p $HOME/blockchain/account-history-rocksdb-storage
mkdir -p $HOME/testnet_datadir
mkdir -p $HOME/testnet_datadir/blockchain/account-history-rocksdb-storage
# copy over config for testnet init and bootstrap nodes
cp $APP_ROOT/testnet.config.ini $HOME/config.ini
cp $APP_ROOT/fastgen.config.ini $HOME/testnet_datadir/config.ini
# mv /etc/nginx/nginx.conf /etc/nginx/nginx.original.conf
# cp /usr/local/src/hive/contrib/hived.nginx.conf /etc/nginx/nginx.conf
# chown hived:hived $HOME/config.ini
# chown hived:hived $HOME/testnet_datadir/config.ini
cd $HOME
# chown -R hived:hived $HOME/*
$APP_ROOT/hived-bootstrap.sh
echo Giving the bootstrap node some time to start up ...
sleep 30
$APP_ROOT/tinman-txgen.sh
$APP_ROOT/hived-seed.sh
echo Giving the seed node some time to start up ...
sleep 60
$APP_ROOT/tinman-server.sh
echo Giving the seed node a bit more time to start up ...
sleep 30
$APP_ROOT/tinman-warden.sh
$APP_ROOT/hivemind.sh
$APP_ROOT/jussi.sh
$APP_ROOT/nginx.sh
echo tintoy: seed is synced
kill $(cat $HOME/hived-bootstrap.pid)
# $APP_ROOT/start-condenser.sh
$APP_ROOT/tinman-gatling.sh
FROM inertia/hive:master-testnet
# Standard stuff
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ARG DOCKER_TAG
ENV DOCKER_TAG ${DOCKER_TAG}
ENV APP_ROOT /app
WORKDIR /app
# The default SHARED_SECRET here is 'tintoy'. In normal testnet deployments,
# this is not so public.
ENV SHARED_SECRET tintoy
# sha256('tintoy')
ENV CHAIN_ID 18dcf0a285365fc58b71f18b3d3fec954aa0c141c44e4e5cb4cf777b9eab274e
RUN \
echo "LC_ALL=en_US.UTF-8" >> /etc/environment && \
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
echo "LANG=en_US.UTF-8" > /etc/locale.conf
# Dependencies
RUN \
apt-get update && \
apt-get install -y \
locales \
build-essential \
checkinstall \
pkg-config \
daemontools \
git \
libffi-dev \
libmysqlclient-dev \
libssl-dev \
make \
python3 \
python3-dev \
python3-pip \
libxml2-dev \
libxslt-dev \
runit \
wget \
pandoc \
libyajl-dev \
virtualenv \
jq
# install node 10
RUN \
curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
apt-get install -y nodejs && \
npm install -g yarn
# install tinman
RUN \
cd $HOME && \
git clone https://gitlab.syncad.com/hive/tinman && \
cd tinman && \
git checkout develop && \
virtualenv -p $(which python3) ~/ve/tinman && \
/bin/bash -c "source ~/ve/tinman/bin/activate && pip install pipenv && pipenv install && pip install ."
# install hivemind
ENV DEBIAN_FRONTEND noninteractive
ENV YES=yes
ENV PG_PASSWORD postgres
ENV DATABASE_URL postgresql://postgres:postgres@localhost:5432/hive
ENV HIVEMIND_PORT 8093
ENV HIVEMIND_ADDRESS 127.0.0.1
RUN \
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -sc)-pgdg main" > /etc/apt/sources.list.d/PostgreSQL.list && \
curl -sSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
apt-get update && \
apt-get install -y \
postgresql-client-11 \
postgresql-11
RUN useradd --user-group --system --create-home --no-log-init hivemind
RUN \
cd $HOME && \
git clone https://gitlab.syncad.com/hive/hivemind.git && \
cd hivemind && \
git submodule update --init --recursive && \
python3 setup.py build && \
python3 setup.py install
# install jussi
ENV JUSSI_SERVER_HOST 0.0.0.0
ENV JUSSI_SERVER_PORT 8091
ENV JUSSI_MONITOR_PORT 7777
RUN \
apt-get install -y \
libbz2-dev \
libc6-dev \
libgdbm-dev \
libncursesw5-dev \
libreadline-gplv2-dev \
libsqlite3-dev \
nginx \
nginx-extras \
lua-zlib \
tk-dev && \
python3.6 -m pip install --upgrade pip && \
python3.6 -m pip install pipenv
RUN \
cd $HOME && \
git clone https://gitlab.syncad.com/hive/jussi.git && \
cd jussi && \
pipenv install --dev --skip-lock && \
pipenv install configargparse funcy jsonschema --skip-lock
# build condenser
# RUN \
# git clone https://gitlab.syncad.com/hive/condenser.git && \
# cd condenser && \
# mkdir -p tmp && \
# yarn global add babel-cli && \
# yarn install --frozen-lockfile && \
# yarn run build
# copy in everything from repo
COPY . .
RUN chmod +x /app/*.sh
RUN \
chown -R www-data . && \
apt-get remove -y \
build-essential \
libffi-dev \
libssl-dev \
git \
checkinstall && \
apt-get clean && \
apt-get autoremove -y && \
rm -rf \
/root/.cache \
/tmp/* \
/var/tmp/* \
/var/cache/*
# entrypoint
CMD /app/bootstrap.sh
# condenser:
EXPOSE 8080
# bootstrap hived rpc:
EXPOSE 18092
# nginx
EXPOSE 8090
# jussi:
EXPOSE 8091
# seed hived rpc:
EXPOSE 8092
# hivemind rpc
EXPOSE 8093
# p2p service:
EXPOSE 2001
# tinman-dashboard service:
EXPOSE 5000
# postgres:
EXPOSE 5432
#!/bin/bash
locale-gen en_US.UTF-8
# export VERSION=`cat /usr/local/hive/consensus/hived_version`
export HIVED="/usr/bin/hived"
export UTILS="/usr/bin"
# for the seed node to connect to the bootstrap node
export ARGS+=" --p2p-seed-node=127.0.0.1:12001"
export ARGS+=" --chain-id=$CHAIN_ID"
# for appbase tags plugin loading
export ARGS+=" --tags-skip-startup-update"
export BOOTARGS+=" --chain-id=$CHAIN_ID"
# hivemind
export HIVEMIND_PORT="8093"
export HIVEMIND_ADDRESS="127.0.0.1"
export STEEMD_URL='{"default":"http://127.0.0.1:8092"}'
export DATABASE_URL="postgresql://postgres:postgres@localhost:5432/hive"
# Plugin(s) to enable, may be specified multiple times
plugin = chain p2p webserver debug_node database_api network_broadcast_api debug_node_api block_api json_rpc account_by_key
plugin = database_api account_by_key_api network_broadcast_api condenser_api
# Size of the shared memory file. Default: 54G
shared-file-size = 30G
# Set the maximum size of cached feed for an account
follow-max-feed-size = 500
# Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
market-history-bucket-size = [15,60,300,3600,86400]
# How far back in time to track history for each bucket size, measured in the number of buckets (default: 5760)
market-history-buckets-per-size = 5760
# User agent to advertise to peers
p2p-user-agent = Graphene Reference Implementation
# Number of threads used to handle queries. Default: 32.
webserver-thread-pool-size = 256
# Enable block production, even if the chain is stale.
enable-stale-production = false
# name of witness controlled by this node (e.g. initwitness )
# witness =
# WIF PRIVATE KEY to be used by one or more witnesses or miners
# private-key =
rc-start-at-block = 100000
rc-account-whitelist = porter tnman
state-format = json
server {
listen 0.0.0.0:8090;
location / {
access_log off;
proxy_pass http://ws;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_buffering off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
add_header Access-Control-Allow-Origin "*";
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS";
add_header Access-Control-Allow-Headers "DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range";
add_header Strict-Transport-Security "max-age=31557600; includeSubDomains; preload" always;
}
}
upstream ws {
#!/bin/bash
cd $HOME
echo tintoy: starting bootstrap node
exec chpst -uroot \
nohup $HIVED \
--webserver-ws-endpoint=0.0.0.0:9990 \
--webserver-http-endpoint=0.0.0.0:9990 \
--webserver-unix-endpoint=/tmp/hived-bootstrap.sock \
--p2p-endpoint=0.0.0.0:12001 \
--data-dir=$HOME/testnet_datadir \
$BOOTARGS \
2>&1 & echo $! > $HOME/hived-bootstrap.pid
echo tintoy: bootstrap node running on PID: $(cat $HOME/hived-bootstrap.pid)
#!/bin/bash
cd $HOME
# add a newline to the config file in case it does not end with a newline
echo -en '\n' >> $HOME/config.ini
# add witness names to config file
i=0 ; while [ $i -lt 21 ] ; do echo witness = '"'init-$i'"' >> $HOME/config.ini ; let i=i+1 ; done
# add keys derived from shared secret to config file
$UTILS/get_dev_key $SHARED_SECRET block-init-0:21 | cut -d '"' -f 4 | sed 's/^/private-key = /' >> $HOME/config.ini
# sleep for an arbitrary amount of time before starting the seed
sleep 10
echo tintoy: bringing up witness / seed / full node
# cp /etc/nginx/healthcheck.conf.template /etc/nginx/healthcheck.conf
# echo server 127.0.0.1:8092\; >> /etc/nginx/healthcheck.conf
# echo } >> /etc/nginx/healthcheck.conf
# rm /etc/nginx/sites-enabled/default
# cp /etc/nginx/healthcheck.conf /etc/nginx/sites-enabled/default
# /etc/init.d/fcgiwrap restart
# service nginx restart
exec chpst -uroot \
nohup $HIVED \
--webserver-ws-endpoint=0.0.0.0:8092 \
--webserver-http-endpoint=0.0.0.0:8092 \
--webserver-unix-endpoint=/tmp/hived-seed.sock \
--p2p-endpoint=0.0.0.0:2001 \
--data-dir=$HOME \
$ARGS \
2>&1 & echo $! > $HOME/hived-seed.pid
echo tintoy: witness / seed / full node running on PID: $(cat $HOME/hived-seed.pid)
user www-data;
worker_processes 64;
worker_rlimit_nofile 10000;
pid /run/nginx.pid;
events {
worker_connections 10000;
}
http {
sendfile on;
keepalive_timeout 0;
server_tokens off;
real_ip_header X-Forwarded-For;
set_real_ip_from 172.31.0.0/16;
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'|"$http_referer"| "$http_user_agent"';
access_log /dev/stdout main;
error_log /dev/stdout info;
log_not_found off;
gzip on;
proxy_ignore_client_abort on;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
#!/bin/bash
cd $HOME/hivemind
cp $APP_ROOT/postgresql.conf /etc/postgresql/11/main/postgresql.conf
cp $APP_ROOT/pg_hba.conf /etc/postgresql/11/main/pg_hba.conf
service postgresql start
# su - postgres -c "/usr/lib/postgresql/11/bin/initdb -D /var/lib/postgresql/11/main"
su - postgres -c "psql -c \"ALTER USER postgres WITH PASSWORD 'postgres';\""
su - postgres -c "createuser -s -i -d -r -l -w hivemind"
su - postgres -c "psql -c \"ALTER SYSTEM SET effective_cache_size = '7GB';\""
su - postgres -c "psql -c \"ALTER SYSTEM SET maintenance_work_mem = '512MB';\""
su - postgres -c "psql -c \"ALTER SYSTEM SET random_page_cost = 1.0;\""
su - postgres -c "psql -c \"ALTER SYSTEM SET shared_buffers = '3GB';\""
su - postgres -c "psql -c \"ALTER SYSTEM SET work_mem = '512MB';\""
su - postgres -c "psql -c \"ALTER SYSTEM SET synchronous_commit = 'off';\""
su - postgres -c "psql -c \"ALTER SYSTEM SET checkpoint_completion_target = 0.9;\""
su - postgres -c "psql -c \"ALTER SYSTEM SET checkpoint_timeout = '30min';\""
su - postgres -c "psql -c \"ALTER SYSTEM SET max_wal_size = '4GB';\""
su - postgres -c "createdb hive"
su - postgres -c "psql -d hive -c \"CREATE EXTENSION intarray;\""
service postgresql restart
hive sync &
sleep 30
hive server --http-server-port $HIVEMIND_PORT &
{
"limits": {
"blacklist_accounts": ["non-steemit"]
},
"upstreams": [
{
"name": "steemd",
"translate_to_appbase": true,
"urls": [["steemd", "http://127.0.0.1:8092"]],
"ttls": [
["steemd", 3],
["steemd.login_api", -1],
["steemd.network_broadcast_api", -1],
["steemd.follow_api", 10],
["steemd.market_history_api", 1],
["steemd.database_api", 3],
["steemd.database_api.get_block", -2],
["steemd.database_api.get_block_header", -2],
["steemd.database_api.get_content", 1],
["steemd.database_api.get_state", 1],
["steemd.database_api.get_state.params=['/trending']", 30],
["steemd.database_api.get_state.params=['trending']", 30],
["steemd.database_api.get_state.params=['/hot']", 30],
["steemd.database_api.get_state.params=['/welcome']", 30],
["steemd.database_api.get_state.params=['/promoted']", 30],
["steemd.database_api.get_state.params=['/created']", 10],
["steemd.database_api.get_dynamic_global_properties", 1]
],
"timeouts": [
["steemd", 5],
["steemd.network_broadcast_api", 0]
]
}, {
"name": "appbase",
"urls": [
["appbase", "http://127.0.0.1:8092"],
["appbase.condenser_api.get_followers", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_following", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_follow_count", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_content", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_content_replies", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_state", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_trending_tags", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_trending", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_hot", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_promoted", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_created", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_blog", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_feed", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_comments", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_replies_by_last_update", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_discussions_by_author_before_date", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_post_discussions_by_payout", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_comment_discussions_by_payout", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_blog", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_blog_entries", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_account_reputations", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_reblogged_by", "http://127.0.0.1:8093"],
["appbase.condenser_api.get_active_votes", "http://127.0.0.1:8093"],
["appbase.follow_api", "http://127.0.0.1:8093"],
["appbase.tags_api", "http://127.0.0.1:8093"]
],
"ttls": [
["appbase", -2],
["appbase.block_api", -2],
["appbase.database_api", 1]
],
"timeouts": [
["appbase", 3],
["appbase.chain_api.push_block", 0],
["appbase.chain_api.push_transaction", 0],
["appbase.network_broadcast_api", 0],
["appbase.condenser_api.broadcast_block", 0],
["appbase.condenser_api.broadcast_transaction", 0],
["appbase.condenser_api.broadcast_transaction_synchronous", 0],
["appbase.condenser_api.get_ops_in_block.params=[2889020,false]", 20]
]
}, {
"name": "hive",
"urls": [
["hive", "http://127.0.0.1:8093"]
],
"ttls": [
["hive", -1]
],
"timeouts": [
["hive", 30]
]
}
]
}
#!/bin/bash
cd $HOME/jussi
cp $APP_ROOT/jussi-config.json config.json
pipenv run python3.6 -m jussi.serve --server_workers=1 --upstream_config_file config.json &
#!/bin/bash
cd $HOME
mv /etc/nginx/nginx.conf /etc/nginx/nginx.original.conf
cp $APP_ROOT/hived.nginx.conf /etc/nginx/nginx.conf
cp $APP_ROOT/healthcheck.conf.template $APP_ROOT/healthcheck.conf
echo server 127.0.0.1:8091\; >> $APP_ROOT/healthcheck.conf
echo } >> $APP_ROOT/healthcheck.conf
rm /etc/nginx/sites-enabled/default
cp $APP_ROOT/healthcheck.conf /etc/nginx/sites-enabled/default
service nginx start
# PostgreSQL Client Authentication Configuration File
# ===================================================
#
# Refer to the "Client Authentication" section in the PostgreSQL
# documentation for a complete description of this file. A short
# synopsis follows.
#
# This file controls: which hosts are allowed to connect, how clients
# are authenticated, which PostgreSQL user names they can use, which
# databases they can access. Records take one of these forms:
#
# local DATABASE USER METHOD [OPTIONS]
# host DATABASE USER ADDRESS METHOD [OPTIONS]
# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
#
# (The uppercase items must be replaced by actual values.)
#
# The first field is the connection type: "local" is a Unix-domain
# socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
# plain TCP/IP socket.
#
# DATABASE can be "all", "sameuser", "samerole", "replication", a
# database name, or a comma-separated list thereof. The "all"
# keyword does not match "replication". Access to replication
# must be enabled in a separate record (see example below).
#
# USER can be "all", a user name, a group name prefixed with "+", or a
# comma-separated list thereof. In both the DATABASE and USER fields
# you can also write a file name prefixed with "@" to include names
# from a separate file.
#
# ADDRESS specifies the set of hosts the record matches. It can be a
# host name, or it is made up of an IP address and a CIDR mask that is
# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
# specifies the number of significant bits in the mask. A host name
# that starts with a dot (.) matches a suffix of the actual host name.
# Alternatively, you can write an IP address and netmask in separate
# columns to specify the set of hosts. Instead of a CIDR-address, you
# can write "samehost" to match any of the server's own IP addresses,
# or "samenet" to match any address in any subnet that the server is
# directly connected to.
#
# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert".
# Note that "password" sends passwords in clear text; "md5" or
# "scram-sha-256" are preferred since they send encrypted passwords.
#
# OPTIONS are a set of options for the authentication in the format
# NAME=VALUE. The available options depend on the different
# authentication methods -- refer to the "Client Authentication"
# section in the documentation for a list of which options are
# available for which authentication methods.
#
# Database and user names containing spaces, commas, quotes and other
# special characters must be quoted. Quoting one of the keywords
# "all", "sameuser", "samerole" or "replication" makes the name lose
# its special character, and just match a database or username with
# that name.
#
# This file is read on server startup and when the server receives a
# SIGHUP signal. If you edit the file on a running system, you have to
# SIGHUP the server for the changes to take effect, run "pg_ctl reload",
# or execute "SELECT pg_reload_conf()".
#
# Put your actual configuration here
# ----------------------------------
#
# If you want to allow non-local connections, you need to add more
# "host" records. In that case you will also need to make PostgreSQL
# listen on a non-local interface via the listen_addresses
# configuration parameter, or via the -i or -h command line switches.
# DO NOT DISABLE!
# If you change this first entry you will need to make sure that the
# database superuser can access the database using some other method.
# Noninteractive access to all databases is required during automatic
# maintenance (custom daily cronjobs, replication, and similar tasks).
#
# Database administrative login by Unix domain socket
local all postgres peer
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all peer
# IPv4 local connections:
host all all 0.0.0.0/0 md5
# IPv6 local connections:
host all all ::/0 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
local replication all peer
host replication all 127.0.0.1/32 md5
host replication all ::1/128 md5
# -----------------------------
# PostgreSQL configuration file
# -----------------------------
#
# This file consists of lines of the form:
#
# name = value
#
# (The "=" is optional.) Whitespace may be used. Comments are introduced with
# "#" anywhere on a line. The complete list of parameter names and allowed
# values can be found in the PostgreSQL documentation.
#
# The commented-out settings shown in this file represent the default values.
# Re-commenting a setting is NOT sufficient to revert it to the default value;
# you need to reload the server.
#
# This file is read on server startup and when the server receives a SIGHUP
# signal. If you edit the file on a running system, you have to SIGHUP the
# server for the changes to take effect, run "pg_ctl reload", or execute
# "SELECT pg_reload_conf()". Some parameters, which are marked below,
# require a server shutdown and restart to take effect.
#
# Any parameter can also be given as a command-line option to the server, e.g.,
# "postgres -c log_connections=on". Some parameters can be changed at run time
# with the "SET" SQL command.
#
# Memory units: kB = kilobytes Time units: ms = milliseconds
# MB = megabytes s = seconds
# GB = gigabytes min = minutes
# TB = terabytes h = hours
# d = days
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
# The default values of these variables are driven from the -D command-line
# option or PGDATA environment variable, represented here as ConfigDir.
data_directory = '/var/lib/postgresql/11/main' # use data in another directory
# (change requires restart)
hba_file = '/etc/postgresql/11/main/pg_hba.conf' # host-based authentication file
# (change requires restart)
ident_file = '/etc/postgresql/11/main/pg_ident.conf' # ident configuration file
# (change requires restart)
# If external_pid_file is not explicitly set, no extra PID file is written.
external_pid_file = '/var/run/postgresql/11-main.pid' # write an extra PID file
# (change requires restart)
#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
# - Connection Settings -
listen_addresses = '*' # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to 'localhost'; use '*' for all
# (change requires restart)
port = 5432 # (change requires restart)
max_connections = 100 # (change requires restart)
#superuser_reserved_connections = 3 # (change requires restart)
unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories
# (change requires restart)
#unix_socket_group = '' # (change requires restart)
#unix_socket_permissions = 0777 # begin with 0 to use octal notation
# (change requires restart)
#bonjour = off # advertise server via Bonjour
# (change requires restart)
#bonjour_name = '' # defaults to the computer name
# (change requires restart)
# - TCP Keepalives -
# see "man 7 tcp" for details
#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds;
# 0 selects the system default
#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds;
# 0 selects the system default
#tcp_keepalives_count = 0 # TCP_KEEPCNT;
# 0 selects the system default
# - Authentication -
#authentication_timeout = 1min # 1s-600s
#password_encryption = md5 # md5 or scram-sha-256
#db_user_namespace = off
# GSSAPI using Kerberos
#krb_server_keyfile = ''
#krb_caseins_users = off
# - SSL -
ssl = on
#ssl_ca_file = ''
ssl_cert_file = '/etc/ssl/certs/ssl-cert-snakeoil.pem'
#ssl_crl_file = ''
ssl_key_file = '/etc/ssl/private/ssl-cert-snakeoil.key'
#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers
#ssl_prefer_server_ciphers = on
#ssl_ecdh_curve = 'prime256v1'
#ssl_dh_params_file = ''
#ssl_passphrase_command = ''
#ssl_passphrase_command_supports_reload = off
#------------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)
#------------------------------------------------------------------------------
# - Memory -
shared_buffers = 128MB # min 128kB
# (change requires restart)
#huge_pages = try # on, off, or try
# (change requires restart)
#temp_buffers = 8MB # min 800kB
#max_prepared_transactions = 0 # zero disables the feature
# (change requires restart)
# Caution: it is not advisable to set max_prepared_transactions nonzero unless
# you actively intend to use prepared transactions.
#work_mem = 4MB # min 64kB
#maintenance_work_mem = 64MB # min 1MB
#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem
#max_stack_depth = 2MB # min 100kB
dynamic_shared_memory_type = posix # the default is the first option
# supported by the operating system:
# posix
# sysv
# windows
# mmap
# use none to disable dynamic shared memory
# (change requires restart)
# - Disk -
#temp_file_limit = -1 # limits per-process temp file space
# in kB, or -1 for no limit
# - Kernel Resources -
#max_files_per_process = 1000 # min 25
# (change requires restart)
# - Cost-Based Vacuum Delay -
#vacuum_cost_delay = 0 # 0-100 milliseconds
#vacuum_cost_page_hit = 1 # 0-10000 credits
#vacuum_cost_page_miss = 10 # 0-10000 credits
#vacuum_cost_page_dirty = 20 # 0-10000 credits
#vacuum_cost_limit = 200 # 1-10000 credits
# - Background Writer -
#bgwriter_delay = 200ms # 10-10000ms between rounds
#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables
#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round
#bgwriter_flush_after = 512kB # measured in pages, 0 disables
# - Asynchronous Behavior -
#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching
#max_worker_processes = 8 # (change requires restart)
#max_parallel_maintenance_workers = 2 # taken from max_parallel_workers
#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers
#parallel_leader_participation = on
#max_parallel_workers = 8 # maximum number of max_worker_processes that
# can be used in parallel operations
#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate
# (change requires restart)
#backend_flush_after = 0 # measured in pages, 0 disables
#------------------------------------------------------------------------------
# WRITE-AHEAD LOG
#------------------------------------------------------------------------------
# - Settings -
#wal_level = replica # minimal, replica, or logical
# (change requires restart)
#fsync = on # flush data to disk for crash safety
# (turning this off can cause
# unrecoverable data corruption)
#synchronous_commit = on # synchronization level;
# off, local, remote_write, remote_apply, or on
#wal_sync_method = fsync # the default is the first option
# supported by the operating system:
# open_datasync
# fdatasync (default on Linux)
# fsync
# fsync_writethrough
# open_sync
#full_page_writes = on # recover from partial page writes
#wal_compression = off # enable compression of full-page writes
#wal_log_hints = off # also do full page writes of non-critical updates
# (change requires restart)
#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
# (change requires restart)
#wal_writer_delay = 200ms # 1-10000 milliseconds
#wal_writer_flush_after = 1MB # measured in pages, 0 disables
#commit_delay = 0 # range 0-100000, in microseconds
#commit_siblings = 5 # range 1-1000
# - Checkpoints -
#checkpoint_timeout = 5min # range 30s-1d
max_wal_size = 1GB
min_wal_size = 80MB
#checkpoint_completion_target = 0.5 # checkpoint target duration, 0.0 - 1.0
#checkpoint_flush_after = 256kB # measured in pages, 0 disables
#checkpoint_warning = 30s # 0 disables
# - Archiving -
#archive_mode = off # enables archiving; off, on, or always
# (change requires restart)
#archive_command = '' # command to use to archive a logfile segment
# placeholders: %p = path of file to archive
# %f = file name only
# e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f'
#archive_timeout = 0 # force a logfile segment switch after this
# number of seconds; 0 disables
#------------------------------------------------------------------------------
# REPLICATION
#------------------------------------------------------------------------------
# - Sending Servers -
# Set these on the master and on any standby that will send replication data.
#max_wal_senders = 10 # max number of walsender processes
# (change requires restart)
#wal_keep_segments = 0 # in logfile segments; 0 disables
#wal_sender_timeout = 60s # in milliseconds; 0 disables
#max_replication_slots = 10 # max number of replication slots
# (change requires restart)
#track_commit_timestamp = off # collect timestamp of transaction commit
# (change requires restart)
# - Master Server -
# These settings are ignored on a standby server.
#synchronous_standby_names = '' # standby servers that provide sync rep
# method to choose sync standbys, number of sync standbys,
# and comma-separated list of application_name
# from standby(s); '*' = all
#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed
# - Standby Servers -
# These settings are ignored on a master server.
#hot_standby = on # "off" disallows queries during recovery
# (change requires restart)
#max_standby_archive_delay = 30s # max delay before canceling queries
# when reading WAL from archive;
# -1 allows indefinite delay
#max_standby_streaming_delay = 30s # max delay before canceling queries
# when reading streaming WAL;
# -1 allows indefinite delay
#wal_receiver_status_interval = 10s # send replies at least this often
# 0 disables
#hot_standby_feedback = off # send info from standby to prevent
# query conflicts
#wal_receiver_timeout = 60s # time that receiver waits for
# communication from master
# in milliseconds; 0 disables
#wal_retrieve_retry_interval = 5s # time to wait before retrying to
# retrieve WAL after a failed attempt
# - Subscribers -
# These settings are ignored on a publisher.
#max_logical_replication_workers = 4 # taken from max_worker_processes
# (change requires restart)
#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers
#------------------------------------------------------------------------------
# QUERY TUNING
#------------------------------------------------------------------------------
# - Planner Method Configuration -
#enable_bitmapscan = on
#enable_hashagg = on
#enable_hashjoin = on
#enable_indexscan = on
#enable_indexonlyscan = on
#enable_material = on
#enable_mergejoin = on
#enable_nestloop = on
#enable_parallel_append = on
#enable_seqscan = on
#enable_sort = on
#enable_tidscan = on
#enable_partitionwise_join = off
#enable_partitionwise_aggregate = off
#enable_parallel_hash = on
#enable_partition_pruning = on
# - Planner Cost Constants -
#seq_page_cost = 1.0 # measured on an arbitrary scale
#random_page_cost = 4.0 # same scale as above
#cpu_tuple_cost = 0.01 # same scale as above
#cpu_index_tuple_cost = 0.005 # same scale as above
#cpu_operator_cost = 0.0025 # same scale as above
#parallel_tuple_cost = 0.1 # same scale as above
#parallel_setup_cost = 1000.0 # same scale as above
#jit_above_cost = 100000 # perform JIT compilation if available
# and query more expensive than this;
# -1 disables
#jit_inline_above_cost = 500000 # inline small functions if query is
# more expensive than this; -1 disables
#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if
# query is more expensive than this;
# -1 disables
#min_parallel_table_scan_size = 8MB
#min_parallel_index_scan_size = 512kB
#effective_cache_size = 4GB
# - Genetic Query Optimizer -
#geqo = on
#geqo_threshold = 12
#geqo_effort = 5 # range 1-10
#geqo_pool_size = 0 # selects default based on effort
#geqo_generations = 0 # selects default based on effort
#geqo_selection_bias = 2.0 # range 1.5-2.0
#geqo_seed = 0.0 # range 0.0-1.0
# - Other Planner Options -
#default_statistics_target = 100 # range 1-10000
#constraint_exclusion = partition # on, off, or partition
#cursor_tuple_fraction = 0.1 # range 0.0-1.0
#from_collapse_limit = 8
#join_collapse_limit = 8 # 1 disables collapsing of explicit
# JOIN clauses
#force_parallel_mode = off
#jit = off # allow JIT compilation
#------------------------------------------------------------------------------
# REPORTING AND LOGGING
#------------------------------------------------------------------------------
# - Where to Log -
#log_destination = 'stderr' # Valid values are combinations of
# stderr, csvlog, syslog, and eventlog,
# depending on platform. csvlog
# requires logging_collector to be on.
# This is used when logging to stderr:
#logging_collector = off # Enable capturing of stderr and csvlog
# into log files. Required to be on for
# csvlogs.
# (change requires restart)
# These are only used if logging_collector is on:
#log_directory = 'log' # directory where log files are written,
# can be absolute or relative to PGDATA
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
# can include strftime() escapes
#log_file_mode = 0600 # creation mode for log files,
# begin with 0 to use octal notation
#log_truncate_on_rotation = off # If on, an existing log file with the
# same name as the new log file will be
# truncated rather than appended to.
# But such truncation only occurs on
# time-driven rotation, not on restarts
# or size-driven rotation. Default is
# off, meaning append to existing files
# in all cases.
#log_rotation_age = 1d # Automatic rotation of logfiles will
# happen after that time. 0 disables.
#log_rotation_size = 10MB # Automatic rotation of logfiles will
# happen after that much log output.
# 0 disables.
# These are relevant when logging to syslog:
#syslog_facility = 'LOCAL0'
#syslog_ident = 'postgres'
#syslog_sequence_numbers = on
#syslog_split_messages = on
# This is only relevant when logging to eventlog (win32):
# (change requires restart)
#event_source = 'PostgreSQL'
# - When to Log -
#log_min_messages = warning # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# info
# notice
# warning
# error
# log
# fatal
# panic
#log_min_error_statement = error # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# info
# notice
# warning
# error
# log
# fatal
# panic (effectively off)
#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements
# and their durations, > 0 logs only
# statements running at least this number
# of milliseconds
# - What to Log -
#debug_print_parse = off
#debug_print_rewritten = off
#debug_print_plan = off
#debug_pretty_print = on
#log_checkpoints = off
#log_connections = off
#log_disconnections = off
#log_duration = off
#log_error_verbosity = default # terse, default, or verbose messages
#log_hostname = off
log_line_prefix = '%m [%p] %q%u@%d ' # special values:
# %a = application name
# %u = user name
# %d = database name
# %r = remote host and port
# %h = remote host
# %p = process ID
# %t = timestamp without milliseconds
# %m = timestamp with milliseconds
# %n = timestamp with milliseconds (as a Unix epoch)
# %i = command tag
# %e = SQL state
# %c = session ID
# %l = session line number
# %s = session start timestamp
# %v = virtual transaction ID
# %x = transaction ID (0 if none)
# %q = stop here in non-session
# processes
# %% = '%'
# e.g. '<%u%%%d> '
#log_lock_waits = off # log lock waits >= deadlock_timeout
#log_statement = 'none' # none, ddl, mod, all
#log_replication_commands = off
#log_temp_files = -1 # log temporary files equal or larger
# than the specified size in kilobytes;
# -1 disables, 0 logs all temp files
log_timezone = 'Etc/UTC'
#------------------------------------------------------------------------------
# PROCESS TITLE
#------------------------------------------------------------------------------
cluster_name = '11/main' # added to process titles if nonempty
# (change requires restart)
#update_process_title = on
#------------------------------------------------------------------------------
# STATISTICS
#------------------------------------------------------------------------------
# - Query and Index Statistics Collector -
#track_activities = on
#track_counts = on
#track_io_timing = off
#track_functions = none # none, pl, all
#track_activity_query_size = 1024 # (change requires restart)
stats_temp_directory = '/var/run/postgresql/11-main.pg_stat_tmp'
# - Monitoring -
#log_parser_stats = off
#log_planner_stats = off
#log_executor_stats = off
#log_statement_stats = off
#------------------------------------------------------------------------------
# AUTOVACUUM
#------------------------------------------------------------------------------
#autovacuum = on # Enable autovacuum subprocess? 'on'
# requires track_counts to also be on.
#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and
# their durations, > 0 logs only
# actions running at least this number
# of milliseconds.
#autovacuum_max_workers = 3 # max number of autovacuum subprocesses
# (change requires restart)
#autovacuum_naptime = 1min # time between autovacuum runs
#autovacuum_vacuum_threshold = 50 # min number of row updates before
# vacuum
#autovacuum_analyze_threshold = 50 # min number of row updates before
# analyze
#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum
#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze
#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum
# (change requires restart)
#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age
# before forced vacuum
# (change requires restart)
#autovacuum_vacuum_cost_delay = 20ms # default vacuum cost delay for
# autovacuum, in milliseconds;
# -1 means use vacuum_cost_delay
#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for
# autovacuum, -1 means use
# vacuum_cost_limit
#------------------------------------------------------------------------------
# CLIENT CONNECTION DEFAULTS
#------------------------------------------------------------------------------
# - Statement Behavior -
#client_min_messages = notice # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# log
# notice
# warning
# error
#search_path = '"$user", public' # schema names
#row_security = on
#default_tablespace = '' # a tablespace name, '' uses the default
#temp_tablespaces = '' # a list of tablespace names, '' uses
# only default tablespace
#check_function_bodies = on
#default_transaction_isolation = 'read committed'
#default_transaction_read_only = off
#default_transaction_deferrable = off
#session_replication_role = 'origin'
#statement_timeout = 0 # in milliseconds, 0 is disabled
#lock_timeout = 0 # in milliseconds, 0 is disabled
#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled
#vacuum_freeze_min_age = 50000000
#vacuum_freeze_table_age = 150000000
#vacuum_multixact_freeze_min_age = 5000000
#vacuum_multixact_freeze_table_age = 150000000
#vacuum_cleanup_index_scale_factor = 0.1 # fraction of total number of tuples
# before index cleanup, 0 always performs
# index cleanup
#bytea_output = 'hex' # hex, escape
#xmlbinary = 'base64'
#xmloption = 'content'
#gin_fuzzy_search_limit = 0
#gin_pending_list_limit = 4MB
# - Locale and Formatting -
datestyle = 'iso, mdy'
#intervalstyle = 'postgres'
timezone = 'Etc/UTC'
#timezone_abbreviations = 'Default' # Select the set of available time zone
# abbreviations. Currently, there are
# Default
# Australia (historical usage)
# India
# You can create your own file in
# share/timezonesets/.
#extra_float_digits = 0 # min -15, max 3
#client_encoding = sql_ascii # actually, defaults to database
# encoding
# These settings are initialized by initdb, but they can be changed.
lc_messages = 'en_US.UTF-8' # locale for system error message
# strings
lc_monetary = 'en_US.UTF-8' # locale for monetary formatting
lc_numeric = 'en_US.UTF-8' # locale for number formatting
lc_time = 'en_US.UTF-8' # locale for time formatting
# default configuration for text search
default_text_search_config = 'pg_catalog.english'
# - Shared Library Preloading -
#shared_preload_libraries = '' # (change requires restart)
#local_preload_libraries = ''
#session_preload_libraries = ''
#jit_provider = 'llvmjit' # JIT library to use
# - Other Defaults -
#dynamic_library_path = '$libdir'
#extension_destdir = '' # prepend path when loading extensions
# and shared objects (added by Debian)
#------------------------------------------------------------------------------
# LOCK MANAGEMENT
#------------------------------------------------------------------------------
#deadlock_timeout = 1s
#max_locks_per_transaction = 64 # min 10
# (change requires restart)
#max_pred_locks_per_transaction = 64 # min 10
# (change requires restart)
#max_pred_locks_per_relation = -2 # negative values mean
# (max_pred_locks_per_transaction
# / -max_pred_locks_per_relation) - 1
#max_pred_locks_per_page = 2 # min 0
#------------------------------------------------------------------------------
# VERSION AND PLATFORM COMPATIBILITY
#------------------------------------------------------------------------------
# - Previous PostgreSQL Versions -
#array_nulls = on
#backslash_quote = safe_encoding # on, off, or safe_encoding
#default_with_oids = off
#escape_string_warning = on
#lo_compat_privileges = off
#operator_precedence_warning = off
#quote_all_identifiers = off
#standard_conforming_strings = on
#synchronize_seqscans = on
# - Other Platforms and Clients -
#transform_null_equals = off
#------------------------------------------------------------------------------
# ERROR HANDLING
#------------------------------------------------------------------------------
#exit_on_error = off # terminate session on any error?
#restart_after_crash = on # reinitialize after backend crash?
#data_sync_retry = off # retry or panic on failure to fsync
# data?
# (change requires restart)
#------------------------------------------------------------------------------
# CONFIG FILE INCLUDES
#------------------------------------------------------------------------------
# These options allow settings to be loaded from files other than the
# default postgresql.conf. Note that these are directives, not variable
# assignments, so they can usefully be given more than once.
include_dir = 'conf.d' # include files ending in '.conf' from
# a directory, e.g., 'conf.d'
#include_if_exists = '...' # include file only if it exists
#include = '...' # include file
#------------------------------------------------------------------------------
# CUSTOMIZED OPTIONS
#------------------------------------------------------------------------------
# Add settings for extensions here
This file has been truncated, but you can view the full file.
{"metadata":{"snapshot:semver":"0.3","snapshot:origin_api":"http://calculon.local:8091"},"dynamic_global_properties":{"total_vesting_fund_hive":{"amount":"140674852571","nai":"@@000000021","precision":3}},"accounts":[{"active":{"account_auths":[],"key_auths":[["STM6G79K7mrFhNcfm3VbGMzt9TDvTAnYs7oL8cee3Z1KcNPXXaCpp",1]],"weight_threshold":1},"balance":{"amount":"95168092","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-10-30T18:20:39","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"24800","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2020-02-29T09:05:57","id":1163130,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6LG38fSdMdAwvG3M8dSVd2s4EC5VpzoMWfVaU9ucxQcGUrB4un","mined":false,"name":"a936","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5RrKdimawRf9EyQQNzP4yxjPsq42fJfJNX4aiFDqsSW3r3Cfmq",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM82DJNb78nanf6iksVzAU3khqFonFibpdwbgetoKgTp1Ybvnoqa",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8CTyiDyDbvM7XDmWUYhV3o213DMz2DcayaHgK3SzmF4JAY34gA",1]],"weight_threshold":1},"balance":{"amount":"1227223","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-05T10:57:30","curation_rewards":54846,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":511192588,"last_update_time":1600636062},"governance_vote_expiration_ts":"2022-10-05T19:51:09","hbd_balance":{"amount":"11372","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-02T07:16:33","hbd_seconds":"9876022728","hbd_seconds_last_update":"2020-03-12T12:16:57","id":812562,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-09-20T20:57:51","last_owner_update":"2018-10-28T12:19:06","last_post":"2020-03-05T17:05:30","last_post_edit":"2020-03-05T17:05:30","last_root_post":"2020-03-05T12:08:48","last_vote_time":"2020-09-20T21:07:42","lifetime_vote_count":0,"memo_key":"STM6S17osApnLrxjv4ecNkyDWaEZchxQpafjgqyYjbBTQxkVVW5J3","mined":false,"name":"aaronhawk","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7BMSSWkMDWuQxKaHsk6fwgAiAN49VAe2djQecxTuAEe3fzU7AF",1]],"weight_threshold":1},"pending_claimed_accounts":2,"pending_transfers":0,"post_bandwidth":0,"post_count":1180,"post_voting_power":{"amount":"2044770352","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["bsteem",1],["busy.app",1],["chibera.app",1],["dev.steepshot",1],["dlike.app",1],["dpixify.app",1],["drugwars.app",1],["dtube.app",1],["esteem-app",1],["ewd",1],["hive.blog",1],["nextcolony",1],["oracle-d.app",1],["partiko-steemcon",1],["share2steem.app",1],["steem-plus-app",1],["steemauto",1],["steemgigs.app",1],["steempeak.app",1],["steeve.app",1],["threespeak",1]],"key_auths":[["STM76STdNVSaixHn85PVTtxnFDEcvBpGfkWePJBvG8QX4hRoMAviq",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":271321,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"415107304","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"212","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2317684938788","vesting_shares":{"amount":"2044770352","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":2003874944,"last_update_time":1600636062},"withdraw_routes":0,"withdrawn":"2317684938788","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM7jWiz4TcAWFhxXVFxELcUiJ5ULEE4mzK66thdNj15Tzng714tC",1]],"weight_threshold":1},"balance":{"amount":"1181047","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-18T18:37:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":258774895,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:38:57","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:38:57","id":204757,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-06-27T21:58:21","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-06-28T15:41:06","last_post_edit":"2017-06-28T15:41:06","last_root_post":"2017-06-28T15:41:06","last_vote_time":"2017-06-28T15:41:06","lifetime_vote_count":0,"memo_key":"STM6kD3dsLhacdoLqSPNNRfZYhanWfMbCMV3MZw1iR2gEQEE6wFSw","mined":false,"name":"abegzegreat","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4y8PybsTqRggSewAjLM9MuuMnc5rQWhxv4wxjTe9dxrWtgoPfo",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2,"post_voting_power":{"amount":"1035099579","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7EHB7idvCFyyYpUwffpuxuHAc2FAXkydV86En9U6QwQZdHEpPo",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1035099579","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1035099579,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM65sTwVu1P3kboaK46VvEYRfFbw4HLNxNFzPpw3UwkbzhhQUBUx",1]],"weight_threshold":1},"balance":{"amount":"3046020","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-08-24T03:38:18","curation_rewards":845,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1472009898},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1280","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:38:57","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:38:57","id":74097,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-05-19T04:07:36","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-07-31T19:31:57","last_post_edit":"2017-07-31T19:31:57","last_root_post":"2017-07-23T01:04:18","last_vote_time":"2018-03-19T23:04:15","lifetime_vote_count":0,"memo_key":"STM8E9wqcn6aSunjS35c2SSX6EHm9JEUgFwo137P7DbomirvZtxed","mined":false,"name":"abhinavsolan","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5fScWFwPY6aTMReJtcDXDjvJ6x8LuyVAFjp7YMpvyFw36UUPms",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":19728,"post_count":19,"post_voting_power":{"amount":"31812873582","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM56FjXMB2nZCdMxwHZ9ETqZVwMbKaXw5QZvwiGwSGP6sWw5DcPE",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2137,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"20408381","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"10","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3156879337502","vesting_shares":{"amount":"31812873582","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1521500655},"withdraw_routes":0,"withdrawn":"3156879337502","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5MFPiruhqJSwQPJcEdMHWvmDqDG7mY4GVR48QqVb1vkYEe4RPp",1]],"weight_threshold":1},"balance":{"amount":"19313105","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-06-05T02:21:15","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1528165275},"governance_vote_expiration_ts":"2022-11-01T13:16:42","hbd_balance":{"amount":"33103","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-06-27T16:27:24","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-27T16:27:24","id":1027398,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-06-05T02:24:27","last_owner_update":"2018-06-05T02:24:27","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5x5z6hvmMiRJ2PyRFLAejj42mxcKWKemypqRLh5JHDhUMVp6Ag","mined":false,"name":"abide","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8HYLMBnUp2xBxncnXXoCyuuBxQCzGucWnG8JFU5qVjh2kEEk94",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"6098392432","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5mSu1KX5mvqbYzS3oXNyRYgbjbbc2yoBqpNSpTpFPGj2o259RJ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"6098392432","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1528165275},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM667UkeJjRBoaDxuQR61hFTjWN8NCskDzqB4gHaidcx151o8Nur",1]],"weight_threshold":1},"balance":{"amount":"4018676","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-01T20:58:27","curation_rewards":6590433,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"458211753266","last_update_time":1618970442},"governance_vote_expiration_ts":"2022-11-21T00:53:54","hbd_balance":{"amount":"2602","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-17T20:46:45","hbd_seconds":"0","hbd_seconds_last_update":"2021-04-17T20:46:45","id":238391,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-22T14:16:12","last_owner_update":"2018-10-13T21:44:54","last_post":"2020-07-20T08:57:39","last_post_edit":"2020-07-20T08:57:39","last_root_post":"2020-01-20T14:30:51","last_vote_time":"2021-04-21T02:00:42","lifetime_vote_count":0,"memo_key":"STM7wdkK6aPHURGPqMG3SYu9pXxnYAvNhddNZ3G2MwL2oPe53xyMj","mined":false,"name":"abigail-dantes","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7PMNksnUYy3dyp7oS8oH9MiMiNUtwf15DfpQKHiKjh594C1MpU",1]],"weight_threshold":1},"pending_claimed_accounts":4,"pending_transfers":0,"post_bandwidth":0,"post_count":4809,"post_voting_power":{"amount":"1832847013066","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["hivestem-app",1],["steemauto",1],["steemhunt.com",1],["steempeak.app",1],["steemstem-app",1]],"key_auths":[["STM85Ca957igA3QyaGn1zXKnW4L7cS4GKR34Es96LjFbcVLE4DHzB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3749642,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"40659926238","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"32550052005","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"16967","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-05-21T16:44:15","savings_hbd_seconds":"1627931835","savings_hbd_seconds_last_update":"2018-05-27T17:21:00","savings_withdraw_requests":0,"to_withdraw":"7734762486244","vesting_shares":{"amount":"1792187086828","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1796190072804","last_update_time":1618970442},"withdraw_routes":0,"withdrawn":"7734762486244","witnesses_voted_for":29},{"active":{"account_auths":[],"key_auths":[["STM8DiTE9ALdRBYMpoVe2PTFFZ462VTExsV6Rnoube39Gdm8UEBSq",1]],"weight_threshold":1},"balance":{"amount":"1535654","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-03T15:27:00","curation_rewards":2744,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1499095620},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"288","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-01-08T09:06:18","hbd_seconds":"34432128","hbd_seconds_last_update":"2018-01-09T18:18:54","id":240508,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-05-28T09:18:12","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-07-21T12:58:09","last_post_edit":"2017-07-21T21:00:51","last_root_post":"2017-07-21T12:58:09","last_vote_time":"2018-01-02T13:28:18","lifetime_vote_count":0,"memo_key":"STM5Wnf9NWfswmxtJjFmWxkQoCcbDaLYTEqhyiQbfSXMWVUpmQNXG","mined":false,"name":"abou","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8H7qJLyXfZdUpNoUd2emqB6xkcCRc4SHSTnGiPTKHzm24vzMQh",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":121,"post_voting_power":{"amount":"9952987937","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5WZgVEsZ57kZiM3XHSH4rDyrwGpJfMYkYeuFaVuyrrg81PSaaP",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5622,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3047306085724","vesting_shares":{"amount":"9952987937","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1514899698},"withdraw_routes":0,"withdrawn":"3047306085724","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5yNjW6P4sF7E31r1TgZoMWqxPpvwWLpgAMbBiKHB47NJ3wSR5u",1]],"weight_threshold":1},"balance":{"amount":"3216140","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-17T18:16:57","curation_rewards":110933,"delayed_votes":[],"delegated_vesting_shares":{"amount":"38009375008062","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1489774617},"governance_vote_expiration_ts":"2022-11-26T05:38:33","hbd_balance":{"amount":"226511","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-27T06:41:06","hbd_seconds":"314100487593","hbd_seconds_last_update":"2020-04-12T07:54:21","id":138919,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-10-26T12:21:09","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-10-28T09:55:42","last_post_edit":"2018-10-28T09:55:42","last_root_post":"2017-07-10T16:12:15","last_vote_time":"2018-11-14T08:51:33","lifetime_vote_count":0,"memo_key":"STM5aWfVdzmWYkPH3kiZ4PBTUv2di5UNc4QGo5dSg1wtLh5KKNbTS","mined":false,"name":"abuzarkalam","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM81rnZ2esvXXrYREgJ5tMF3gjd3eDcBHoG6JRQDMMdKKNLPnLXe",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":89,"post_voting_power":{"amount":"160521357473","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1]],"key_auths":[["STM6s8DMfk2PeEFxrsJy6xDFSwrj87iXn5mRc7HWzJayfb3JNGkjF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":20059,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"38169896365535","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"160521357473","last_update_time":1553831427},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM6HQbY1AP3ZS3jJj42odZjGfvDqwgtRPBEqjdm1VjHX9rHXXyhY",1]],"weight_threshold":1},"balance":{"amount":"22620502","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-04-11T19:16:24","curation_rewards":396557,"delayed_votes":[],"delegated_vesting_shares":{"amount":"20109836000000","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"7800378354479","last_update_time":1586130570},"governance_vote_expiration_ts":"2022-08-14T12:04:57","hbd_balance":{"amount":"490","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-04-03T12:53:00","hbd_seconds":"361630800","hbd_seconds_last_update":"2020-04-12T08:16:30","id":936373,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-12-29T11:30:54","last_owner_update":"2018-04-11T19:20:21","last_post":"2020-03-14T03:40:09","last_post_edit":"2020-03-14T03:40:45","last_root_post":"2019-10-04T01:52:09","last_vote_time":"2020-04-05T23:49:30","lifetime_vote_count":0,"memo_key":"STM6DSnSmhkECNYA49ukAtUBiSwaxaFLQwknszvCQ2m46nk8J9bsj","mined":false,"name":"accountsale","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6pnHitknMbF5VimkpX92AbiAFRGY3A31c2CZGPRhP59k4ujhVT",1]],"weight_threshold":1},"pending_claimed_accounts":123,"pending_transfers":0,"post_bandwidth":0,"post_count":38,"post_voting_power":{"amount":"49695875264","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dclick.app",1],["steempeak.app",1]],"key_auths":[["STM7rZthjeekjJnkrppN67ZK9K85FDRZos4RJT8cEmAorAhsAhRmW",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":106126,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"createaccount","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"53897402802","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"27558","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"41246356044955","vesting_shares":{"amount":"20159531875264","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"32234845674584","last_update_time":1586130570},"withdraw_routes":0,"withdrawn":"41246356044955","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM5ZK583kUPiMuuois2H6LphsMkPpRyM7ABxt68a4r9GxsP5KmqU",1]],"weight_threshold":1},"balance":{"amount":"1257927","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-17T03:32:33","curation_rewards":19997091,"delayed_votes":[{"time":"2021-04-14T09:00:48","val":"1077056240659"}],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"52208478931540","last_update_time":1619023845},"governance_vote_expiration_ts":"2022-11-22T02:24:00","hbd_balance":{"amount":"781964","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-25T12:55:45","hbd_seconds":"1621282049655","hbd_seconds_last_update":"2021-04-21T16:49:45","id":25608,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-29T15:40:42","last_owner_update":"2020-08-01T15:10:00","last_post":"2021-04-21T16:25:21","last_post_edit":"2021-04-21T16:25:21","last_root_post":"2021-04-21T12:57:09","last_vote_time":"2021-04-21T16:50:45","lifetime_vote_count":0,"memo_key":"STM5SkNF7NdrkSyCHdkssBFyA4GLR1bETPz8GSR3ZHmR8xN9h9URv","mined":false,"name":"ace108","next_vesting_withdrawal":"2021-04-28T07:43:36","owner":{"account_auths":[],"key_auths":[["STM7QXwnsxS3qWKdYsenr4JPGPzjXbjRVEUsc5N7vZNCYKgi5KLKe",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":24473,"post_count":58110,"post_voting_power":{"amount":"210276269488983","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dpoll.xyz",1],["steemhunt.com",1]],"key_auths":[["STM57vAUugDNPz4Se1U3dBZ4j8iDKUamUx3XtD1MQjPdDdWn22qZ2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":47278250,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"100000000000000","nai":"@@000000037","precision":6},"recovery_account":"happydolphin","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5288079356","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2797","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-10-02T19:35:57","savings_hbd_seconds":"4272681780","savings_hbd_seconds_last_update":"2017-10-06T23:05:03","savings_withdraw_requests":0,"to_withdraw":"18750598916678","vesting_shares":{"amount":"110276269488983","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1442353762822","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"141118488822836","last_update_time":1619023845},"withdraw_routes":0,"withdrawn":"10096476339754","witnesses_voted_for":23},{"active":{"account_auths":[],"key_auths":[["STM6GLdr7rCKZz4NVtBEnCNM9JWD6yVV8ZkpX7A3BQPh4krddVaoR",1]],"weight_threshold":1},"balance":{"amount":"3914609","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-24T00:34:48","curation_rewards":119918110,"delayed_votes":[{"time":"2021-04-18T11:15:51","val":1890973498}],"delegated_vesting_shares":{"amount":"24010438545482","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"78497709585574","last_update_time":1619036985},"governance_vote_expiration_ts":"2022-11-15T08:33:45","hbd_balance":{"amount":"2787","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-09T02:20:36","hbd_seconds":"28345320720","hbd_seconds_last_update":"2021-04-21T15:43:57","id":9562,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-04-21T15:11:24","last_owner_update":"2017-05-21T14:47:48","last_post":"2021-04-21T20:40:21","last_post_edit":"2021-04-21T20:40:21","last_root_post":"2021-04-12T06:21:48","last_vote_time":"2021-04-21T20:29:45","lifetime_vote_count":0,"memo_key":"STM8aERhC2aEHbJXkUpznd37PH6QoG7dfdQgmyPZ7VTnZu6ZnD8pN","mined":false,"name":"acidyo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5TrWnx3UCwtBXBCNJwaDrGybpgmKaQPk5AMyF3FfKX8zfkAvt5",1]],"weight_threshold":1},"pending_claimed_accounts":8830,"pending_transfers":0,"post_bandwidth":19016,"post_count":21319,"post_voting_power":{"amount":"609838369565895","nai":"@@000000037","precision":6},"posting":{"account_auths":[["aureal",1],["dapplr",1],["dlux",1],["downvote-tool",1],["peakd.app",1],["rewarding",1],["steempeak.app",1],["threespeak",1],["vimm.app",1]],"key_auths":[["STM87ZyYukWLQWwLEv1EMdvW8TfC83wxY55HYbeGiXp4HStN5HKFG",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":142090269,"proxied_vsf_votes":["664161905982846","6852939979492","46387487715",0],"proxy":"","received_vesting_shares":{"amount":"609058611802442","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"8776268633","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"4642","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-07-21T16:19:48","savings_hbd_seconds":"4292184","savings_hbd_seconds_last_update":"2018-07-21T16:19:54","savings_withdraw_requests":0,"to_withdraw":"25489711765283","vesting_shares":{"amount":"24790196308935","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"512705342665816","last_update_time":1619036985},"withdraw_routes":0,"withdrawn":"25489711765283","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM7qYvgXHzBhbkoSBEp2w7cUZ3X8ZwPzZZTrQUWpP8Jm5GZCZFxq",1]],"weight_threshold":1},"balance":{"amount":"2265896","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-25T18:50:51","curation_rewards":412672,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"13274408113","last_update_time":1618975008},"governance_vote_expiration_ts":"2022-06-05T13:24:00","hbd_balance":{"amount":"218","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-13T14:59:48","hbd_seconds":"115365600","hbd_seconds_last_update":"2021-04-19T17:59:48","id":383570,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-15T03:53:54","last_owner_update":"2017-11-10T21:29:48","last_post":"2020-03-19T22:55:18","last_post_edit":"2020-03-19T22:55:18","last_root_post":"2020-03-18T02:54:03","last_vote_time":"2021-04-21T03:16:48","lifetime_vote_count":0,"memo_key":"STM8KDmFEtFg1rT3arneY45fDQbZkC3Zr5CQwha41E9tcS1CeDYEF","mined":false,"name":"acolucky","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5aCCTmn2rtVNT1p8zZehkAQ3tt6do8HNoJ9LDixg195u35SiBp",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3610,"post_voting_power":{"amount":"53097632455","nai":"@@000000037","precision":6},"posting":{"account_auths":[["drugwars.app",1],["nc-client",1],["nextcolony",1],["steemauto",1]],"key_auths":[["STM8K9WUNXGRqRa81fCZvk2u1qwg4Rqz78eRsuKJQwHPjWc4crNQs",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1950029,"proxied_vsf_votes":[0,0,0,0],"proxy":"idikuci","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4088902453522","vesting_shares":{"amount":"53097632455","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"52035679805","last_update_time":1618975008},"withdraw_routes":0,"withdrawn":"4088902453522","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5Fw8e9QtrgFTKfs86KQGBpRKcPG495h7GNifesEa1vFtdrW7Yx",1]],"weight_threshold":1},"balance":{"amount":"1661272","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-06T17:04:39","curation_rewards":8363,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1515258279},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-04-04T14:17:57","hbd_seconds":"0","hbd_seconds_last_update":"2019-04-04T14:17:57","id":568716,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-01-10T11:52:33","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-03-02T12:01:24","last_post_edit":"2018-03-02T12:01:24","last_root_post":"2018-02-22T13:19:42","last_vote_time":"2018-06-25T14:47:45","lifetime_vote_count":0,"memo_key":"STM78oXX4kNnWanJTMCx8y943vNKAFV4mtHYq34WKbPrMZACCpe5k","mined":false,"name":"acongsteemer","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7Z5ecR7UgTrLUG7QefjLHrnuQn7rNyRsMpRdvTs7hh68YzCpts",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":303,"post_voting_power":{"amount":"10447194939","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7NvjVETRgrSoD9RNzRP5QotM9Mq3iPvhGUTSB7qy5VdCQbSAom",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":22230,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3367185423255","vesting_shares":{"amount":"10447194939","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9037,"last_update_time":1529938065},"withdraw_routes":0,"withdrawn":"3367185423255","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5dKYWWmQKvgs8nXqv3xTzWPezY1xb148Apa2bse6oKEEZG5Y4i",1]],"weight_threshold":1},"balance":{"amount":"6031413","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-12-15T23:22:12","curation_rewards":198186,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"5306488365373","last_update_time":1619007630},"governance_vote_expiration_ts":"2022-09-19T23:08:24","hbd_balance":{"amount":"19","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-21T17:15:51","id":1347784,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-12-15T23:30:33","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2021-04-21T12:20:30","lifetime_vote_count":0,"memo_key":"STM8ayWvUsMeJrocYR3it9ax5deQ8dL2M6DdEG4kKr4fM9xMVTn8A","mined":false,"name":"acram64","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7qTMEiAgXghrxR2T3gj4DGSu3CteP5KDB77CZ3DW41yNTYWBot",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"23071688545104","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1]],"key_auths":[["STM7Km6qrCEMkB57MqyrxZ5KKTpB7VkRqcPnLETzz6H5KeGKi7Mgx",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"30672361358384","vesting_shares":{"amount":"23071688545104","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"23071688545104","last_update_time":1619007630},"withdraw_routes":0,"withdrawn":"30672361358384","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6p7LNVcdS8veRSsj7Dd41Agh4sbuaPJpDKkgpjYcSaDgvkognV",1]],"weight_threshold":1},"balance":{"amount":"21678372","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-20T00:19:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":257497057,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:38:57","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:38:57","id":376821,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-10-19T17:01:42","lifetime_vote_count":0,"memo_key":"STM6yp9uppqA2G6R5edWQyLpiN4Sw2XWBRvLjYygpPLuHW6oEivuQ","mined":false,"name":"action10","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5knif1rE4qa5zKPTWBY3ZXLgPQQhF242tCD5UESrevFx8uZxCV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1029988228","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM58vmpHk4nXLcyCSsTwv3RqRAhosfhXBvXGMg6nMxwdTteQgYya",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1029988228","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1029988228,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM77H8QKyUwB36SocoB1cXzvo8KpRePnHETcexzuLfW8bXupJy2J",1]],"weight_threshold":1},"balance":{"amount":"3025954","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-06-08T15:10:30","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"84809519953","last_update_time":1581318834},"governance_vote_expiration_ts":"2022-09-10T14:18:57","hbd_balance":{"amount":"207993","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-01-30T03:21:45","hbd_seconds":"200513893299","hbd_seconds_last_update":"2020-02-10T07:13:54","id":1283248,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-08-08T18:14:36","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-05T00:35:09","last_post_edit":"2021-04-05T00:40:06","last_root_post":"2021-04-05T00:35:09","last_vote_time":"2019-08-08T18:45:18","lifetime_vote_count":0,"memo_key":"STM4uUNJooAyP7qyxmt3PNtbshvHbSPBDcxyv4nbABVTePTACKfWK","mined":false,"name":"activepatriotuk","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6wGwqNkbFk2Md4uMoC2Uh76FnPW73gdrM82orqSW8rz9AUghxp",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":320,"post_voting_power":{"amount":"339238079813","nai":"@@000000037","precision":6},"posting":{"account_auths":[["threespeak",1]],"key_auths":[["STM7W9zMgtjuU3x5LxuY3mwQBMzFPfsAbPi2Hy7c1N54Aa9obEXx7",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":380211,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"oracle-d","reset_account":"null","reward_hbd_balance":{"amount":"2686","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"35167127903","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"18350","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"339238079813","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"339238079813","last_update_time":1581318834},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM4zxyCtNCRdcEjJPUnNAEHPAt4cnHeiMenrRGADcjceekrUzzw8",1]],"weight_threshold":1},"balance":{"amount":"1706893","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-12T00:31:03","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1460421063},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:38:57","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:38:57","id":1765,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM4zxyCtNCRdcEjJPUnNAEHPAt4cnHeiMenrRGADcjceekrUzzw8","mined":true,"name":"adamsmith","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4zxyCtNCRdcEjJPUnNAEHPAt4cnHeiMenrRGADcjceekrUzzw8",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM4zxyCtNCRdcEjJPUnNAEHPAt4cnHeiMenrRGADcjceekrUzzw8",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3536245000000","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1460421063},"withdraw_routes":0,"withdrawn":"3536245000000","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM83XoryAwPuPxupyVdp9MoQda84EdmCtjg1NR87MR2suei8dtwe",1]],"weight_threshold":1},"balance":{"amount":"3753892","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-08T21:38:54","curation_rewards":954555,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2757722246712","last_update_time":1619020227},"governance_vote_expiration_ts":"2022-10-05T05:53:42","hbd_balance":{"amount":"10103","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-22T22:16:45","hbd_seconds":"25927745394","hbd_seconds_last_update":"2021-04-21T15:50:27","id":738022,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-22T22:40:54","last_owner_update":"2018-07-17T10:15:03","last_post":"2021-03-24T13:41:12","last_post_edit":"2021-03-24T13:41:12","last_root_post":"2020-06-08T17:59:33","last_vote_time":"2021-04-20T15:06:12","lifetime_vote_count":0,"memo_key":"STM6y2rVPhLwZxjYbhvR2tag1BKXU7mtaTe3sQPo2gmV2esTU2Lwz","mined":false,"name":"adeyemidrey","next_vesting_withdrawal":"2021-04-22T17:56:33","owner":{"account_auths":[],"key_auths":[["STM62yC5VNtUcmPgHva6AXAoGDrRh6xe2Yv8RHRuDnK8YzQdrT4w2",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3960,"post_voting_power":{"amount":"14582060662025","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["buildteam",1],["busy.app",1],["dclick.app",1],["dlive.app",1],["dreply",1],["drugwars.app",1],["dtube.app",1],["dtubeviewer",1],["fundition.app",1],["leofinance",1],["oracle-d",1],["partiko-steemcon",1],["peakd.app",1],["share2steem.app",1],["steemhunt.com",1],["steempeak.app",1],["threespeak",1]],"key_auths":[["STM5BT9FYUbGRxQ3AmPuu7p9nujewsoHsEs46ASsjBSB3yhN3VT9t",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1426553,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"2136399149","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1130","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"46165231777273","vesting_shares":{"amount":"14582060662025","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"3551171675175","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"8840192075134","last_update_time":1619020227},"withdraw_routes":0,"withdrawn":"31960545076575","witnesses_voted_for":14},{"active":{"account_auths":[],"key_auths":[["STM82A5JoFYLSu2upU2tzNsMeC5E1BMvYVLCutakmv2REtVbTTkWk",1]],"weight_threshold":1},"balance":{"amount":"3702545","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-20T14:06:21","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1490018781},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:38:57","id":139961,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM85PkszeNWKanwLNyqbmLMHG6DyVfTfZCuiWuiAEerPCA5QNJfK","mined":false,"name":"adhocbob","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5HfD4Ez8KJUFVpEnN6JtRZyFoy7a2GKbpqLWD1ytSDt7QBjXDi",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"34610866407741","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5dLdn7FLqLvcjU3cpJvzWsc15UrtrWJQhmb5rmMgiqTsMuDZ3S",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"315492","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"8190820768249","vesting_shares":{"amount":"34610866407741","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1490018781},"withdraw_routes":0,"withdrawn":"8190820768249","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8YMRvKYzyTXSd5NpoJFaUBpVT91L3J7nETBBJ4T4SNeREpm1a3",1]],"weight_threshold":1},"balance":{"amount":"1499981","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-07-17T13:18:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":50707176,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1077739,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8ZGJBSUVhTW9ex7ax6joZCrXM6CwvStVDB5u2dzPXbQDQySsdW","mined":false,"name":"adi-man","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6HG1eg9kH9mtPNtFY1CeGWYWpmowmdzqggNLDvR5RJd65Le4i5",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"202828701","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7RFz3CJtsBGshBd8EMDpo6y5DL8QyaHSeiewXfD15uQ4JU7Xnd",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"202828701","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":202828701,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7QBtS6kmhAKgPPfPamTWyuT5MRZxiPYhcvK3CBLaztCDyMidKX",1]],"weight_threshold":1},"balance":{"amount":"14800621","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-06T09:55:06","curation_rewards":80964738,"delayed_votes":[],"delegated_vesting_shares":{"amount":"2100000000000000","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"440741310100213","last_update_time":1619036364},"governance_vote_expiration_ts":"2022-10-24T02:21:33","hbd_balance":{"amount":"144","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-13T11:56:12","hbd_seconds":"218400624","hbd_seconds_last_update":"2021-03-31T01:14:03","id":1254,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-07-01T13:15:30","last_owner_update":"2016-07-05T19:52:06","last_post":"2021-03-12T12:29:45","last_post_edit":"2021-03-12T12:29:45","last_root_post":"2016-07-11T05:09:48","last_vote_time":"2021-04-21T20:19:24","lifetime_vote_count":0,"memo_key":"STM5y6Gg7LGWZJursizchyn1qjeh4JQRugJENMfo9Gbzzpsh44rgN","mined":true,"name":"adm","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5jvE5J6bQUDdEqwoDN3dU72oJkr9Ug6B51TrXfXyfrqqpmN4Gv",1]],"weight_threshold":1},"pending_claimed_accounts":20135,"pending_transfers":0,"post_bandwidth":0,"post_count":343,"post_voting_power":{"amount":"1763755402821319","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM4xCmXL9fjLSGGQqg5BuZ5SHtBbBD3CRi6BRC7wPdVn5qBJXeoN",1],["STM52GWn66TvYxTCcDDwXa53VwQwbnmV84QZndLvdQKEppitWUvwA",1],["STM5bicRFWhpxnwBymo2HHJv6mFLiaP6AwVVsFEnnVjVcqbvqzvFt",1],["STM5tT6fKtodfdMGxtcgsQuEYypmMwuLCVaZdsQ7kTd98hHcbSKC6",1],["STM5tqUszyt7Qf9uZrJGLWMWi2s8kBbjGwoDgj5iVoeBU8KEKefZd",1],["STM5xHrBbWPFxJYwRuFcyRezCkAqvKD6BJz8cd2cyRBumr5Cpm5eB",1],["STM7uBcZYcNs68qWDFTdg11tmzeTupa1awrVduwyDqwjF8DrDUBXF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":931057,"proxied_vsf_votes":["8069999403794","168876223242","12855589175","12855824291"],"proxy":"oflyhigh","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1046100511556","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"552787","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"798092884031902","vesting_shares":{"amount":"3863755402821319","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1763755402821319","last_update_time":1619036364},"withdraw_routes":1,"withdrawn":"798092884031902","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6sJeXCoBPKadCSVXP4kHVS8dmgdaAi6u3XdaJiiFPwG4QcL9Gz",1]],"weight_threshold":1},"balance":{"amount":"4127674","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-23T06:22:00","curation_rewards":475154,"delayed_votes":[],"delegated_vesting_shares":{"amount":"59460000000","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1506147720},"governance_vote_expiration_ts":"2022-09-03T22:05:33","hbd_balance":{"amount":"728468","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-12-20T03:46:45","hbd_seconds":"0","hbd_seconds_last_update":"2018-12-20T03:46:45","id":380144,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-02-11T23:43:27","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-08-28T11:36:45","last_post_edit":"2018-08-28T11:36:45","last_root_post":"2018-02-11T23:15:33","last_vote_time":"2018-08-28T11:36:45","lifetime_vote_count":0,"memo_key":"STM5d39CYyVZJvhgDZAB57KbUkT4U3TzPdv5kyF2SbQmmq8cgvxwn","mined":false,"name":"adriatik","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7HtvnybgX1mMtkXLyRZ9VvLXuN2s96Xm24d4uRtsupwxow2vWD",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":11474,"post_voting_power":{"amount":"3107208104471","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["steemauto",1],["utopian.app",1]],"key_auths":[["STM76CYHwSchGCeJW29mn3iTMWVbB9AqLeA74Zav9Wdza4MrLpVRq",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":86449,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4018314542977","vesting_shares":{"amount":"3166668104471","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3107208104471","last_update_time":1541272818},"withdraw_routes":0,"withdrawn":"4018314542977","witnesses_voted_for":9},{"active":{"account_auths":[],"key_auths":[["STM6wYUrK9TTMrE6McDga9f98w5YEstTWz7bmkDpsLW9NJgRiotxj",1]],"weight_threshold":1},"balance":{"amount":"2372886","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-14T21:48:30","curation_rewards":1126,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1468532910},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"552","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-03-10T14:38:09","hbd_seconds":"1105189560","hbd_seconds_last_update":"2019-04-02T18:47:24","id":23322,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-21T19:50:27","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-02-10T19:40:39","last_post_edit":"2019-02-10T19:40:39","last_root_post":"2018-03-01T20:14:15","last_vote_time":"2019-03-22T18:50:09","lifetime_vote_count":0,"memo_key":"STM6LUvYYWw2QfKspCrHpBiE31awTDXFGA5HCWEbnPJ5AJietXmks","mined":false,"name":"adrix","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM74ngJBuFAxJ7MDWAx16pE3ZsoRxk8dnHg4yCDmYsyq3EnvAYjA",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":69,"post_voting_power":{"amount":"255765455237","nai":"@@000000037","precision":6},"posting":{"account_auths":[["ecency.app",1]],"key_auths":[["STM5kdmk9XkFKp9cuRbuMJZDQrU5ksJkToWXgdD6p1UGSpFhrnAAA",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":684,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2820535842897","vesting_shares":{"amount":"255765455237","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"906658342064","last_update_time":1554230844},"withdraw_routes":0,"withdrawn":"2820535842897","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Pcrdk9hqYGExtGS968jrB1bGzsFp3t9sNEk4DVxzU8qdNhjSi",1]],"weight_threshold":1},"balance":{"amount":"4631041","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-19T19:02:24","curation_rewards":603706,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2888337794803","last_update_time":1612952100},"governance_vote_expiration_ts":"2022-09-30T03:38:42","hbd_balance":{"amount":"12037","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-02-10T10:15:00","hbd_seconds":"0","hbd_seconds_last_update":"2021-02-10T10:15:00","id":376695,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-10T10:14:06","last_owner_update":"2017-12-30T18:17:24","last_post":"2019-06-18T10:27:00","last_post_edit":"2019-06-18T10:27:00","last_root_post":"2019-06-18T10:27:00","last_vote_time":"2020-03-20T12:29:57","lifetime_vote_count":0,"memo_key":"STM6aovMb4nDdohfZKyqf5TBUGNSKZ8kb1o5eqpj7DG79eL9tFrc3","mined":false,"name":"adsactly-witness","next_vesting_withdrawal":"2021-04-28T10:16:36","owner":{"account_auths":[],"key_auths":[["STM82EcAT2dffVfVHY8GrKhn3rLfZwMjLDX94ZRyjUdNk3bY87d39",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":301,"post_voting_power":{"amount":"2774366760943","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["peakd.app",1]],"key_auths":[["STM8MhGYLRg7zt5isU9jgBrdRzvWFoaoRPrEpzQTxW5XtmtH4GCAN",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1944469,"proxied_vsf_votes":["24051570878",0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"rondonson","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"11412679743747","vesting_shares":{"amount":"2774366760943","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"877898441827","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"11553351179213","last_update_time":1612952100},"withdraw_routes":0,"withdrawn":"8778984418270","witnesses_voted_for":15},{"active":{"account_auths":[],"key_auths":[["STM6doqpPau9hwoPbn5yXxFa5DpjgsdRaNdhRHpGScHuQwHULyZJ4",1]],"weight_threshold":1},"balance":{"amount":"11630564","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-15T22:55:15","curation_rewards":528086,"delayed_votes":[],"delegated_vesting_shares":{"amount":"2931994001361","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4159096221172","last_update_time":1619027967},"governance_vote_expiration_ts":"2022-10-07T05:13:24","hbd_balance":{"amount":"98379","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-09T17:59:27","hbd_seconds":"96456860601","hbd_seconds_last_update":"2021-04-21T17:59:27","id":500372,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-01-02T06:05:48","last_owner_update":"2018-05-05T12:15:00","last_post":"2021-04-16T23:45:30","last_post_edit":"2021-04-16T23:45:30","last_root_post":"2021-04-16T23:45:30","last_vote_time":"2021-04-21T16:49:06","lifetime_vote_count":0,"memo_key":"STM69ebQSAnwxfMfEWbgmUmCJkWHVjXSQUBVcLtMbdkkhuPvGhuNB","mined":false,"name":"adventuroussoul","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5RVznx7PLb6Z5qp74WQTzJ6MR9mm9GU16xVkDNQmsX8d8DxsW7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1649,"post_voting_power":{"amount":"16636384884690","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["fundition.app",1],["hive.blog",1],["partiko-steemcon",1],["share2steem.app",1],["steemauto",1],["threespeak",1],["utopian.app",1]],"key_auths":[["STM6M8XfnMq3CWU49Bizp6yzudGpnv7AhhZKQXEYccQCuR1mTCFES",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5556215,"proxied_vsf_votes":[0,0,0,0],"proxy":"techcoderx","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-05-16T02:14:00","savings_hbd_seconds":"58629549681","savings_hbd_seconds_last_update":"2018-05-27T03:56:39","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"19568378886051","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"16636384884690","last_update_time":1619027967},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7Jv9HvtmGSfEhLcTyDjGorKsp6dAhqEwL5KkBMK7uNYeRzpRya",1]],"weight_threshold":1},"balance":{"amount":"4205491","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-02-11T21:57:03","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1217572,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM55tQHQWRWNgqypsXH57fFmu2cztWyfspXgtTBMTKgUMeHF7eMT","mined":false,"name":"aeon1111","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8mhePHH6Jc7hAk9Cv3fa328pnWXy7hY33zHkUzctdqH4oDwRzZ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6y6KkrRs73KcuuecvEuEmGonXEhJK5ajQXHjtvhJ1qbRQNTdCb",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5TzP5yTcpVbv8ejAdJQ5GMAGCoJVGYPRDGoofwGz5ZsrxUNrbo",1]],"weight_threshold":1},"balance":{"amount":"2389237","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-08-05T16:13:18","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1596643998},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1402536,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6iypLEeUBmQd6czentqz7dmFcu8db3HsSSVyGoC6tmr2zA42YV","mined":false,"name":"afglobal922","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7DrSgMVpWDEaQt1fdZiXFjAC9rjL9LX2cPue8fq1y4SaJgC37t",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6Qjb9AA2E5Gh4cjrrswzYGzgqy5XJGyqhwK3Dry13tXTZWSJww",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"wallet.creator","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1596643998},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM88fSZn8yQQs213qAbEW3dcwFYe4AUFaQp66ZHmuo5oP4iZzEjc",1]],"weight_threshold":1},"balance":{"amount":"7631200","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-18T04:07:24","curation_rewards":896383,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4526740635267","last_update_time":1602372876},"governance_vote_expiration_ts":"2022-10-02T18:37:00","hbd_balance":{"amount":"39","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-10-07T05:00:39","hbd_seconds":"12177309","hbd_seconds_last_update":"2020-10-10T23:34:36","id":504251,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-10-01T23:20:48","last_owner_update":"2020-05-19T10:11:42","last_post":"2020-09-26T09:20:15","last_post_edit":"2020-09-26T10:50:18","last_root_post":"2020-09-26T09:20:15","last_vote_time":"2020-10-04T01:07:30","lifetime_vote_count":0,"memo_key":"STM5xJ2BdCg1jpv45a5WQpirEKuzsGwx6jyuHyZJchaV6vD63mzDo","mined":false,"name":"afiqsejuk","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7WFQVABvTaT2eqy1YX589zSyV3DokMmTJ9Zv7tc4ksrrddKrBH",1]],"weight_threshold":1},"pending_claimed_accounts":180,"pending_transfers":0,"post_bandwidth":0,"post_count":2081,"post_voting_power":{"amount":"53626543744","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["dpoll.xyz",1],["engrave.app",1],["holybread.app",1],["nextcolony",1],["peakd.app",1],["smartsteem",1],["steempeak.app",1],["threespeak",1]],"key_auths":[["STM6HU3Yn2FnbQ1xPnJGNr47vSFrTAXnhr3hnnvHKfqf6MKjaMKk6",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":373119,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"kukubird74","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"382742020055","vesting_shares":{"amount":"53626543744","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"18106962541070","last_update_time":1602372876},"withdraw_routes":0,"withdrawn":"382742020055","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM5eXd2CotseFLNHLfo9CNW4Ex8jQV2H94wzihoJsC6YdMZsTAPt",1]],"weight_threshold":1},"balance":{"amount":"4629280","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-18T14:06:36","curation_rewards":1677531,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"5797503403","last_update_time":1615561584},"governance_vote_expiration_ts":"2022-07-12T22:26:06","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-12T15:06:24","hbd_seconds":"0","hbd_seconds_last_update":"2021-03-12T15:06:24","id":8966,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-11-19T19:54:27","last_owner_update":"2018-01-23T02:08:06","last_post":"2019-05-24T01:33:36","last_post_edit":"2019-05-24T01:33:36","last_root_post":"2019-05-24T01:33:36","last_vote_time":"2020-07-20T10:22:15","lifetime_vote_count":0,"memo_key":"STM83ebkVxrCxpXBnduXv18HakY9E6XxTxR2AdEd8YhWRyMWThhze","mined":false,"name":"africa","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM68qNiUNPKsS8tokwdNBQitTomRXhsro7hLHcqFMkNAy5eQ2C8K",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1131,"post_voting_power":{"amount":"23190013614","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dlive.app",1],["dtube.app",1],["steemauto",1]],"key_auths":[["STM5QHjYgqDBz6f5ZGU91qZSn4yA8Yx76VTpCf236SW4PyNMKKZhX",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":19309302,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"11066876791232","vesting_shares":{"amount":"23190013614","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"23190013614","last_update_time":1615561584},"withdraw_routes":0,"withdrawn":"11066876791232","witnesses_voted_for":9},{"active":{"account_auths":[],"key_auths":[["STM8aZRnqNFeFAngKaU9iYsJUK6tNQYkdbW2iMDnSB6vZA4k1cMTg",1]],"weight_threshold":1},"balance":{"amount":"27381371","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2021-04-02T23:44:03","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1617407043},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1449949,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-04-02T23:48:27","last_owner_update":"2021-04-02T23:48:27","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6nAQce6vRTyeeUZJAaG1AnN6RwKELS5LvMKmtZPj6wvqgb4J37","mined":false,"name":"afterawakening","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5FNgEp4PJfReU4b7j4njRv2wDmV5aL1nnDnjz7sYqPbt5ugHx4",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[["ecency.app",1]],"key_auths":[["STM8TSuJ5LXcaZDCqXqx1tdqyx3VmvAEdXvtQ7tbaEh3gA3WN6skX",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"ecency","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1617407043},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7PQ87Qv15Apjxb88cuoNHLv6dDFHcpMUv16xbjmW15FUqst8VN",1]],"weight_threshold":1},"balance":{"amount":"3066502","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2021-03-21T08:05:06","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1616313906},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1445557,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7hQHWzGbLqgMJM4WdAECFVcvgo5BJoMUoJBcmSk3DD8GTiGE4V","mined":false,"name":"agencydolphin","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6jr4oZK6as5qTdPd7zWQXtxaZXkmi1BgNZWwnnyfXcxqcnHHag",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[["ecency.app",1]],"key_auths":[["STM54kYPtCV4nkqg6T24rXmJLxgLhij8FQYR8sjaBSJ5PD3sGrUvh",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"esteemapp","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1616313906},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM88gviJDXcq3ngxi51Lv9gu16Hfnv9apfUTQ5fvSHAEEnpbS1Bg",1]],"weight_threshold":1},"balance":{"amount":"133693128","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-12-31T10:10:06","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1577787006},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1351455,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM76ypzpVhDbhRiFCErbfWgmUaGmQytLHHa7YQro1j9iywzwR6Pa","mined":false,"name":"agentib","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7JKVRraJH87haKZxzqRgd3Sei21NXwdgeGBExkRjmQCgL6YvU1",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8hxyYXAdk87VSZcXWWxPDeLqVKzaXhQ2XH9tLeEqmVDAhLPsZk",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"topquants","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1577787006},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM71yrNGu6bL5nD8Ep9yR19vYW6Y4ZGkKB4VjmbRvdiz93jf3UsV",1]],"weight_threshold":1},"balance":{"amount":"19609127","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-08-09T23:45:06","curation_rewards":14153218,"delayed_votes":[],"delegated_vesting_shares":{"amount":"182367003661128","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"103171277093875","last_update_time":1619038893},"governance_vote_expiration_ts":"2022-10-04T09:47:09","hbd_balance":{"amount":"10319","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-15T17:58:33","hbd_seconds":"270963906","hbd_seconds_last_update":"2021-04-21T07:07:12","id":54169,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-02T15:49:39","last_owner_update":"2017-10-26T21:17:06","last_post":"2021-04-19T13:28:15","last_post_edit":"2021-04-19T13:28:15","last_root_post":"2021-04-19T13:28:15","last_vote_time":"2021-04-20T12:00:54","lifetime_vote_count":0,"memo_key":"STM7kCxY2ggcgiKbXX8Gv1ufvb9bW2xwAK9nxZQAMMtQpCHEMxAEv","mined":false,"name":"aggroed","next_vesting_withdrawal":"2021-04-28T12:37:27","owner":{"account_auths":[],"key_auths":[["STM5uzXDy8n6TmXxGABCpQRFLydgUPxk3EBb298R5FoxHdCVDqs9E",1]],"weight_threshold":1},"pending_claimed_accounts":1070,"pending_transfers":0,"post_bandwidth":10000,"post_count":7440,"post_voting_power":{"amount":"449755421739844","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["steem-plus-app",1]],"key_auths":[["STM5TeqPNicScjRpLyYqR175KrmjV2gLTUNj7mgQLCMoHKMntsG1R",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":88388081,"proxied_vsf_votes":["39817183638852",0,0,0],"proxy":"","received_vesting_shares":{"amount":"231908332327","nai":"@@000000037","precision":6},"recovery_account":"crimsonclad","reset_account":"null","reward_hbd_balance":{"amount":"12944","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"66786748696","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"35325","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"481914073736435","vesting_shares":{"amount":"631890517068645","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"37070313364342","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"412685108375502","last_update_time":1619038893},"withdraw_routes":0,"withdrawn":"74140626728684","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM8ikbhuiJUZvCg2NqdEHgMseSVbonFHbPDq6cU66npieD7KLtMb",1]],"weight_threshold":1},"balance":{"amount":"1903231","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-15T09:18:54","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1467379861961","last_update_time":1597020645},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-02-17T18:24:33","id":764546,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-28T08:32:09","last_owner_update":"2020-04-28T08:32:09","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8cSL2NXgPqpSJiUZZ2uyJ4ygfbrpJNQyAsA4htEDuBaasSv2ud","mined":false,"name":"aguasky11","next_vesting_withdrawal":"2021-04-27T00:42:06","owner":{"account_auths":[],"key_auths":[["STM58Bd2UufdudMphysSKzodrWRnCsLyXw9gSxsDX7X3AtE7P8Kbu",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"2263354785791","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5dUwb6bSn5bvUkkHod6N8UhurCjQbPqHZCu15cfdtwpFirie9Y",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5860017575831","vesting_shares":{"amount":"2263354785791","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"450770582757","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"5869519447847","last_update_time":1597020645},"withdraw_routes":0,"withdrawn":"3606164662056","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5fBXq8HbcH15FkgAb4P8LKsXAEsRALmVsf1KyXphXHqii5C4HR",1]],"weight_threshold":1},"balance":{"amount":"2046848","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-14T01:23:54","curation_rewards":3448,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":2523013255,"last_update_time":1580582001},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"43193","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-11-30T00:27:06","hbd_seconds":"0","hbd_seconds_last_update":"2018-11-30T00:27:06","id":446914,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-04-23T15:14:36","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-02-01T18:34:15","last_post_edit":"2020-02-01T18:34:15","last_root_post":"2020-01-31T17:14:42","last_vote_time":"2020-02-01T18:33:21","lifetime_vote_count":0,"memo_key":"STM6YsgLJSVsBU18e7gogjsFDD4Nk4u4f5rjtxf16iKKb6bwbepZ5","mined":false,"name":"ahren707","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6qiB7EA4C7Mz4X2FXePXnDRAXQViPSrSG1senNE39AbER4HX57",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":137,"post_voting_power":{"amount":"10092053021","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5KFXPrRRAENr6Hy991QJqE7FwDdfGKJt8PgdCMH3Gqoieoky7A",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":30923,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"8","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"101","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"357869319","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"178","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4116433276549","vesting_shares":{"amount":"10092053021","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"9890211960","last_update_time":1580582001},"withdraw_routes":0,"withdrawn":"4116433276549","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7L9FntrpToyLbSTPsWMUAi2W6zRmr75gTaVovNZ7X4D2ZoaMz4",1]],"weight_threshold":1},"balance":{"amount":"37840256","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-05-01T19:00:54","curation_rewards":5388413,"delayed_votes":[],"delegated_vesting_shares":{"amount":"198334839582","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"22592186760435","last_update_time":1600957758},"governance_vote_expiration_ts":"2022-10-08T08:29:54","hbd_balance":{"amount":"540","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-09-24T14:29:18","hbd_seconds":"0","hbd_seconds_last_update":"2020-09-24T14:29:18","id":1267936,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-02T07:06:03","last_owner_update":"2020-04-02T07:06:03","last_post":"2019-06-02T13:55:36","last_post_edit":"2019-06-02T13:55:36","last_root_post":"2019-06-02T13:55:36","last_vote_time":"2020-06-10T21:30:18","lifetime_vote_count":0,"memo_key":"STM7VFABp6gvVHfhrtetyFxkEZtyf74SFJZ4kFApvpqvSp7jEWqm4","mined":false,"name":"aicu","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM73DnTV2Vu4Sn7nz2dYEbLAZ3WodGE8XdAt1NPi8ZyeU4QSuUGe",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4,"post_voting_power":{"amount":"963499672435","nai":"@@000000037","precision":6},"posting":{"account_auths":[["nextcolony",1],["peakd.app",1],["peakmonsters.app",1],["steempeak.app",1],["taverngames",1]],"key_auths":[["STM648CEDdKWuXa5gniTEE24mepakriozWpyXH4VevMXVWrCS8H7R",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":285,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"953891754363","nai":"@@000000037","precision":6},"recovery_account":"bauloewe","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"89405247369307","vesting_shares":{"amount":"207942757654","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"90368747041742","last_update_time":1600957758},"withdraw_routes":0,"withdrawn":"89405247369307","witnesses_voted_for":26},{"active":{"account_auths":[],"key_auths":[["STM5bMUDHFxUL1a1TgG2CzVZtBQcR6oJGyXtuDxdGouqMWGRwzEqQ",1]],"weight_threshold":1},"balance":{"amount":"8559720","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-05T16:15:12","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1496679312},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":179349,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-06-15T08:10:45","last_owner_update":"2017-06-15T08:10:45","last_post":"2018-06-10T06:07:21","last_post_edit":"2018-06-10T06:07:21","last_root_post":"2018-06-10T06:07:21","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM4zp3vhWUAySj8EadgJdGCi6vcx7Eg2X7SGNpfH8ucozGD4HV1n","mined":false,"name":"aimhighest","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM88azawaQUkdLaBUsYW9kUvAAE3aRN37SAJtBwPB9jBACAuE6P7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7vzUiRxhEiFvZYdeng5UsHxyidSVCd5PpAcMFf2TknpLchUiQ4",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"16702384328770","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1496679312},"withdraw_routes":0,"withdrawn":"16702384328770","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8AyEDxtEzLYArb2bono6m9cc2UZ8EcwYjbiuHRmXVm7s94UaBE",1]],"weight_threshold":1},"balance":{"amount":"3480681","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-05-29T14:06:06","curation_rewards":302305,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"24792850280","last_update_time":1619035992},"governance_vote_expiration_ts":"2022-10-10T15:53:12","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-09T18:00:03","hbd_seconds":"2051994","hbd_seconds_last_update":"2021-04-21T15:00:00","id":1278881,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-12-31T07:19:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-11-20T02:21:54","last_post_edit":"2020-11-20T02:21:54","last_root_post":"2020-11-20T02:21:54","last_vote_time":"2021-04-21T20:13:12","lifetime_vote_count":0,"memo_key":"STM6yPfE3XpK9BY9SA2JqYDkyMu4UsjapxYSsN51nvPCyhDUy2VRa","mined":false,"name":"aipaws","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8CBmgqWQr3cHfQJgmKkdgKgH8J6fVPrkHdWVTgTBzMCq9CZSef",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":204,"post_voting_power":{"amount":"99171401123","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1]],"key_auths":[["STM5hYCuvqcTxqp6t9u1VbZZbkGF8ZRNYyhdvfBWgN4obCMSjLDwM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3579888,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"6612857897796","vesting_shares":{"amount":"99171401123","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"97187973100","last_update_time":1619035992},"withdraw_routes":0,"withdrawn":"6612857897796","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM86yyxVvQeba9yuBUxRnGTJYUSfsE8g3Q6ZbRTMgLLBwaRrmE51",1]],"weight_threshold":1},"balance":{"amount":"2361408","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-27T19:29:45","curation_rewards":390754,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1635071437200","last_update_time":1618643745},"governance_vote_expiration_ts":"2022-11-13T06:09:21","hbd_balance":{"amount":"9515","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-29T22:15:09","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-29T22:15:09","id":464268,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-10-20T13:49:15","last_owner_update":"2018-04-19T07:35:51","last_post":"2020-10-03T06:35:00","last_post_edit":"2020-10-03T06:35:00","last_root_post":"2020-10-03T06:35:00","last_vote_time":"2021-04-17T07:15:45","lifetime_vote_count":0,"memo_key":"STM7zdqqcHyDrighHx9zyznRaKsUXRW3EgvZ9khLTx3XMHkaHbkt9","mined":false,"name":"air-clinic","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5iUU871RYA9h1PYFK3yRtBVhQxLte5jH5H37L8zsGs2QhdVjfL",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2354,"post_voting_power":{"amount":"6540285748802","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dhealth.app",1],["dtube.app",1],["finally.app",1],["steemauto",1],["steemdunk",1],["steemhunt.com",1],["utopian.app",1]],"key_auths":[["STM5KP617nBnz4vX5osWjYkPvwKNGXSw4mih9a2LxyJNZW15HT4cY",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3139571,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"6404793369650","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"45","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"41337333162","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"21277","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4497832434882","vesting_shares":{"amount":"135492379152","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"6409480033825","last_update_time":1618643745},"withdraw_routes":0,"withdrawn":"4497832434882","witnesses_voted_for":11},{"active":{"account_auths":[],"key_auths":[["STM7FQN4jTHSaWB6sRZiQTWBtoQJbEsSgDXui3VYq7X3VCEBLekhh",1]],"weight_threshold":1},"balance":{"amount":"3360712","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-06T00:40:18","curation_rewards":4079390,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"28110960767","last_update_time":1590682959},"governance_vote_expiration_ts":"2022-10-28T12:24:27","hbd_balance":{"amount":"17008","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-05-28T16:22:39","hbd_seconds":"0","hbd_seconds_last_update":"2020-05-28T16:22:39","id":398846,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-23T01:50:18","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-04-10T16:23:03","last_post_edit":"2018-04-10T16:23:03","last_root_post":"2018-04-10T16:23:03","last_vote_time":"2020-01-20T12:59:06","lifetime_vote_count":0,"memo_key":"STM89RZs6iKM7CdArpYeeKZbsEPdJowGVEpJnQwivtcpn2sgNEdxU","mined":false,"name":"airbud23","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5fecYnUzcjTL2TiA1J2wPM5t7xnxQFTtRNFjnA6GdD6WVejE25",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":57,"post_voting_power":{"amount":"112443843071","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["hive.blog",1],["minnowbooster",1],["peakd.app",1],["steemauto",1],["what.app",1]],"key_auths":[["STM8BkFbmbLuwaYhYXzwrKpvMxcBQ3qUuXGs5KQKFQPhUrEd2cudk",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":28316,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"134607828269468","vesting_shares":{"amount":"112443843071","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"112443843071","last_update_time":1590682959},"withdraw_routes":0,"withdrawn":"134607828269468","witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM77axfhBXwqit4pBfHfFf4DPVqDmpzpiBkfW8BztBrDUDxnL4FF",1]],"weight_threshold":1},"balance":{"amount":"1191018","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-05T22:09:39","curation_rewards":428787,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"300106527890","last_update_time":1618946892},"governance_vote_expiration_ts":"2022-10-28T19:35:24","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-18T20:38:33","hbd_seconds":"16679604","hbd_seconds_last_update":"2021-03-31T07:08:33","id":151183,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-01T06:57:48","last_owner_update":"2018-01-10T12:38:51","last_post":"2020-10-14T12:48:15","last_post_edit":"2020-10-14T12:48:15","last_root_post":"2020-09-03T14:43:48","last_vote_time":"2021-04-20T19:28:12","lifetime_vote_count":0,"memo_key":"STM6y5iWCxBBcTisrQq2fJo35LsqWAzTFfCBLwTjn2tDng1RhU8tm","mined":false,"name":"airmatti","next_vesting_withdrawal":"2021-04-28T07:08:51","owner":{"account_auths":[],"key_auths":[["STM6hheh4VJc9XWtmJARoAsek8Q4Suo7dMxjrceux3YZSGtHbJsAw",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3907,"post_voting_power":{"amount":"1200426111560","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dclick.app",1],["dpoll.xyz",1],["elegance.app",1],["ntopaz-artisteem",1],["partiko-steemcon",1],["peakd.app",1],["share2steem.app",1],["smartsteem",1],["steem-plus-app",1],["steemauto",1],["steemgigs.app",1],["steemline.app",1],["streemian",1],["utopian.app",1]],"key_auths":[["STM5j6TnQ4mun6pq34q5MjEvT9mQ7RWZhci41qMyQppECnjr1kmkv",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2138250,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"kus-knee","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"605525665","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"320","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"1558734978174","vesting_shares":{"amount":"1200426111560","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"119902690629","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1176417589328","last_update_time":1618946892},"withdraw_routes":0,"withdrawn":"359708071887","witnesses_voted_for":20},{"active":{"account_auths":[],"key_auths":[["STM7UNHxf9cvabRM5jjDGJ83L5gmCSBAbqkenC7PKzg2Mhjitptng",1]],"weight_threshold":1},"balance":{"amount":"38960591","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-16T19:34:21","curation_rewards":2645867,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1241406322160","last_update_time":1619015784},"governance_vote_expiration_ts":"2022-11-05T22:19:09","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-10-20T14:11:12","hbd_seconds":"0","hbd_seconds_last_update":"2020-07-18T05:03:15","id":2464,"is_smt":false,"json_metadata":"","last_account_recovery":"2016-07-21T07:14:21","last_account_update":"2017-06-25T10:17:36","last_owner_update":"2016-07-21T10:36:21","last_post":"2020-04-02T04:58:18","last_post_edit":"2020-04-02T04:58:18","last_root_post":"2020-04-02T04:58:18","last_vote_time":"2021-03-08T05:19:48","lifetime_vote_count":0,"memo_key":"STM5BwpTRGVHmJ4PZcTUrEDxx3wBTtExc38cvwwUKxRXja78BvXBz","mined":true,"name":"aizensou","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5sWx2XFF5ARvYvv4byJr6j4uvigp5BkeUXKQGgvgYJgf5YC3Ca",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":223,"post_voting_power":{"amount":"4965625288641","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM67DpSn3uHFnXh9aMtVuyngXaunrK2N234BC9xKWVqJkkS92pdb",1],["STM8Jn23vNmBzVuDAgQeZzzR17LmruENmmZmv1ra53tbsBgYbJFwk",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":18965365,"proxied_vsf_votes":["1798852960325",0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"25290538160","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"13102","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"9330875289010","vesting_shares":{"amount":"4965625288641","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4965625288641","last_update_time":1619015784},"withdraw_routes":1,"withdrawn":"9330875289010","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM6GX5ToPqUDGEdmSEKufqmmiiQ8CLQu6AtES3fzy6VY6VMZpAwD",1]],"weight_threshold":1},"balance":{"amount":"1346162","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-06-22T07:04:06","curation_rewards":93602,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"748976487076","last_update_time":1619038905},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2140","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-02T01:39:36","hbd_seconds":"3485770995","hbd_seconds_last_update":"2021-04-21T02:13:03","id":1393932,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-01-24T11:32:39","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-03T07:46:12","last_post_edit":"2021-04-03T07:46:12","last_root_post":"2020-12-22T10:16:42","last_vote_time":"2021-04-21T21:01:45","lifetime_vote_count":0,"memo_key":"STM7dF4UhTGDTw1KgKt1x7ryri4xWNWhdtddCQQNPjsoqYU4Jfnc8","mined":false,"name":"ajaycapital","next_vesting_withdrawal":"2021-04-25T15:34:54","owner":{"account_auths":[],"key_auths":[["STM5Vit1pNcjyp12USXGUTCNuM5w1ZMMUj9u6DLWvS3S6TmKwLJEX",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":19,"post_voting_power":{"amount":"3005372225851","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["hive.blog",1],["leofinance",1],["peakd.app",1],["steemauto",1]],"key_auths":[["STM5QLi243WM3CCTT2iBJKCH8rrE5SyvP62TK5tUcaTTQMHQdGy2Z",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5656,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"2858846645443","nai":"@@000000037","precision":6},"recovery_account":"esteemapp","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"896177649","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"474","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"123061608069","vesting_shares":{"amount":"146525580408","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"9466277544","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2585342455738","last_update_time":1619038905},"withdraw_routes":0,"withdrawn":"18932555088","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7QSTUdD5tsuGfrygzUovFjms6oihosjJRaFhsY6FKQjpPWrPKn",1]],"weight_threshold":1},"balance":{"amount":"9811278","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-01-03T02:58:45","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1483412325},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":123924,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6njFivjsxJvPM53id6zWJqDAorBhTdPhKMQ683FptaaeXRyZMR","mined":false,"name":"ajeet","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5TbJy9wrTCTiPdYkHQPmvVD3SuRRvkWcK6hhHFtgQ4YRVikBHP",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"9952434072","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8HrtrGvWzEbzQiigK44XDFShkfSDBrBvE3zjjchZwBc3aNiQLJ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"19468064923078","vesting_shares":{"amount":"9952434072","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1483412325},"withdraw_routes":0,"withdrawn":"19468064923078","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM87FtHkRMpG3dKbJnJ3ezWc2pqwHDYCsQwG7WuyNfK3BF7yqYmX",1]],"weight_threshold":1},"balance":{"amount":"2867890","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-29T18:03:00","curation_rewards":29039,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1401424678825","last_update_time":1580244168},"governance_vote_expiration_ts":"2022-10-14T20:45:30","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-01-13T20:46:39","hbd_seconds":"1295769","hbd_seconds_last_update":"2020-01-28T20:42:48","id":687041,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-03-31T19:27:21","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-11-12T18:40:30","last_post_edit":"2019-11-12T18:40:30","last_root_post":"2019-11-12T18:40:30","last_vote_time":"2020-01-15T17:07:21","lifetime_vote_count":0,"memo_key":"STM8GFFYo3L72y8xAHcBkM3mcYtgtTK5TN8e43RoumUf1FkkBXuKX","mined":false,"name":"ajmining","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5RBCNwaJFJzoidEAxFSw9SQpHQtvf1TgV7Kps9CLnCN5r4CMJ2",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3,"post_voting_power":{"amount":"9794758181","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemdunk",1]],"key_auths":[["STM6ZAsmdAHuXA4Lutz8aBiFzWFEvpRFugcbCAJxint85GSQeBPtz",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5595903957122","vesting_shares":{"amount":"9794758181","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"5605698715303","last_update_time":1580244168},"withdraw_routes":0,"withdrawn":"5595903957122","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM59LYUNi4zAZJyRXWcnot3Dr1d9JECpSBZaQQpYxMeKFKFGzVBF",1]],"weight_threshold":1},"balance":{"amount":"2110597","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-18T16:10:48","curation_rewards":7215,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1035937430469","last_update_time":1573138428},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-11-07T14:53:48","hbd_seconds":"0","hbd_seconds_last_update":"2019-11-07T14:53:48","id":374352,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2019-11-07T14:51:36","lifetime_vote_count":0,"memo_key":"STM5xghov17ZXTcNyMKXF9i4ovRDmqjiUKzmgfNp3FTeq18aUYDLN","mined":false,"name":"ajsteemit","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7VJZGkmQDh3bWX7gX61FnkyFPhUdV4RqnUedHgXqmSVqByCeC3",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"11781026831","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7sP2yTjt3xcX5m2yceD2PGJDxKeDtwvhsgYYmGJna6hPKa5pfF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"67083700","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"34","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4131968695049","vesting_shares":{"amount":"11781026831","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4062141888877","last_update_time":1573138428},"withdraw_routes":0,"withdrawn":"4131968695049","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6NqFVLvw3uuCLBo18ExcooUrVTHLGiBEYTHDgfaFDeYK4pMcLY",1]],"weight_threshold":1},"balance":{"amount":"8291631","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-11T06:07:36","curation_rewards":3736278,"delayed_votes":[],"delegated_vesting_shares":{"amount":"8227526932361","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"81113876519","last_update_time":1599848631},"governance_vote_expiration_ts":"2022-09-07T02:27:36","hbd_balance":{"amount":"478","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-09-11T18:23:51","hbd_seconds":"10700760","hbd_seconds_last_update":"2020-09-11T18:30:51","id":1695,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-09-11T19:18:24","last_owner_update":"2016-07-19T21:59:03","last_post":"2018-05-22T20:49:21","last_post_edit":"2018-05-22T21:00:57","last_root_post":"2018-05-22T20:49:21","last_vote_time":"2020-03-20T13:25:57","lifetime_vote_count":0,"memo_key":"STM89VVNKbN8Xj3AwEWAG634kCogfCCcFnkHRHtvZH2dtxb3fXb9Y","mined":true,"name":"ajvest","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5jBRm9ceY3Z7o1pLyX1HdYTuiL9zo4TQjUUfgi8xGK8C9qsHwQ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":431,"post_voting_power":{"amount":"324455506080","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1]],"key_auths":[["STM4v7HW76bwNQ7UyfnG5NHY9nmQhcPPmyZ47xfuDjfpxz9KzU6LF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5333898,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"ajvest2","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-06-13T03:51:36","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-06-13T03:51:36","savings_withdraw_requests":0,"to_withdraw":"14528736760214","vesting_shares":{"amount":"8551982438441","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"324455506080","last_update_time":1599848631},"withdraw_routes":0,"withdrawn":"14528736760214","witnesses_voted_for":19},{"active":{"account_auths":[],"key_auths":[["STM5WzqoaiYYQqTLKqq6tmananyBZ4sLuWyPrLmfju9HhxtKV6YE1",1]],"weight_threshold":1},"balance":{"amount":"1245565","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-13T19:37:06","curation_rewards":64204,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6321983138","last_update_time":1584711963},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2811","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-04-02T19:22:51","hbd_seconds":"0","hbd_seconds_last_update":"2019-04-02T19:22:51","id":158489,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-06-23T06:56:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-05-18T09:03:15","last_post_edit":"2018-05-18T09:03:15","last_root_post":"2018-05-15T11:44:30","last_vote_time":"2020-03-20T13:46:03","lifetime_vote_count":0,"memo_key":"STM6mUhwHeCMEffXWQDZ1G5WBA4RFGp3KLLdCbQ45gwPUcukV5Ce9","mined":false,"name":"ak892n","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5v75xju9p8FFSNMrtnEddFt58JQJBtud5oGKHqpmHrqhhz78kV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":149,"post_voting_power":{"amount":"25287932554","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8ineDgruhaNbk7GNQB4cvBRPXrTUSJN7GGt46fW7GoVuhb5PEv",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":61968,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"245725870","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"123","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2377456376566","vesting_shares":{"amount":"25287932554","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"24782173902","last_update_time":1584711963},"withdraw_routes":0,"withdrawn":"2377456376566","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6wWLFi7NayZxo62xoaacbWzYbE5E2MJ7MFazWdZzwiRCtaCmPc",1]],"weight_threshold":1},"balance":{"amount":"5293683","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-03T04:51:21","curation_rewards":12054,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1496465481},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"7","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-08-04T02:11:06","hbd_seconds":"0","hbd_seconds_last_update":"2018-08-04T02:11:06","id":175227,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-07-05T17:21:21","last_post_edit":"2017-07-05T17:21:21","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-10-22T20:48:51","lifetime_vote_count":0,"memo_key":"STM8NTkA5z9LqTHKAv7kdcUpvUueTwQJQviZJyC2g1mHgWcwGK1JP","mined":false,"name":"akasurreal","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7GopVPpwnYS96mj69oo8M6PSmvouXKRDeLQHd4X6kAAYT7sVJB",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"11129324824","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5m6CzmJhnz3eiLY3hiUFoyohYdSY46RhbZbPsvpM52wtpYRQmd",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"28198569117613","vesting_shares":{"amount":"11129324824","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1508705331},"withdraw_routes":0,"withdrawn":"28198569117613","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8YzPgWykWAbiDYw8fQCiAdH8CSg8R9iT4Xy9EZSL43K4Ny4fp9",1]],"weight_threshold":1},"balance":{"amount":"4707306","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-08-04T18:02:36","curation_rewards":2429445,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2287896049440","last_update_time":1589297724},"governance_vote_expiration_ts":"2022-06-23T03:31:42","hbd_balance":{"amount":"708","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-05-07T15:37:51","hbd_seconds":"13536120","hbd_seconds_last_update":"2020-05-07T15:44:21","id":45790,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-12-03T03:58:30","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-04-27T05:06:18","last_post_edit":"2020-04-27T05:06:18","last_root_post":"2018-01-08T05:09:54","last_vote_time":"2018-11-20T05:09:45","lifetime_vote_count":0,"memo_key":"STM8TLFnPeGq36PLgDU8eyQFSXCutjLFYFUdRuqwpsm4mAyCnLXj7","mined":false,"name":"aksdwi","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6tjiMpAbnqzTXWvAmFYpvnFrp1Qa7ev3X33PhCzz3NQ48meayT",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":19880,"post_voting_power":{"amount":"9754275043","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["minnowbooster",1],["smartsteem.app",1]],"key_auths":[["STM5EXenBSrhd8iwXC5bSYkPigQhEei3rDkhBgVfqrh7P7KuF1oKD",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":201199,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"9141829922720","vesting_shares":{"amount":"9754275043","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"9151584197763","last_update_time":1589297724},"withdraw_routes":0,"withdrawn":"9141829922720","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM67C8k92RUyjdiBFmYake8BdY9hWpazdGyN8ThztAKuPErHcWUp",1]],"weight_threshold":1},"balance":{"amount":"3032547","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-08-29T10:36:39","curation_rewards":564263,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"15991661632","last_update_time":1584712452},"governance_vote_expiration_ts":"2022-09-29T04:02:03","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-10-31T09:18:51","hbd_seconds":"0","hbd_seconds_last_update":"2019-10-31T09:18:51","id":78529,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-03-21T17:47:24","last_owner_update":"2018-03-21T17:47:24","last_post":"2019-06-07T19:53:12","last_post_edit":"2019-06-07T19:53:12","last_root_post":"2019-06-07T19:43:39","last_vote_time":"2020-03-20T13:54:12","lifetime_vote_count":0,"memo_key":"STM8TDLfuGWkysresiDtHgJLQHFhjT5VNfjgmQtBVdd9Uu4Rq7RGY","mined":false,"name":"aksinya","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6wvRZ6C623tR4pEZos7w5EMUCd4vvJFtrmUHc4t9Boz8E7UVrx",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":20086,"post_count":6044,"post_voting_power":{"amount":"63966646530","nai":"@@000000037","precision":6},"posting":{"account_auths":[["streemian",1]],"key_auths":[["STM5SUBfBfy3ZgRs9UYo6tQtX2VcULpVhQy7ntPXx7UJiLdh3xt7g",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":10031315,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"17685366","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"9","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"106","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-03-18T12:54:09","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-03-18T12:54:09","savings_withdraw_requests":0,"to_withdraw":"7821809386786","vesting_shares":{"amount":"63966646530","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"48015991597","last_update_time":1584712452},"withdraw_routes":0,"withdrawn":"7821809386786","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM6LNhiUQX1Zgfu9djMLJbBxAekjBK3eKhQC2G9ZdmyoLzqxDjZo",1]],"weight_threshold":1},"balance":{"amount":"2926167","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-18T13:49:21","curation_rewards":4,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"13127162138","last_update_time":1570631742},"governance_vote_expiration_ts":"2022-07-13T01:06:54","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":373569,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-01-12T13:51:18","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-01-12T13:35:30","last_post_edit":"2018-01-12T13:35:30","last_root_post":"2018-01-07T00:03:12","last_vote_time":"2019-10-09T14:35:42","lifetime_vote_count":0,"memo_key":"STM7surfLAwLdmWFF5gG9WorBJPoDC5dULpiuBKjgEiK684NFNmtk","mined":false,"name":"alanscott","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7f5SuwnfEPbfWkJUCEa1mTdjDLjnbTAWoG6YZScmPzouaQjYvQ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3,"post_voting_power":{"amount":"52508648553","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6FgKMfi36By7WLKWVJxcw1PiSv32zyCyodDQNmekTYVaaffqPQ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":9,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"21","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"18430915","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"9","nai":"@@000000021","precision":3},"savings_balance":{"amount":"1500000","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"52508648553","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"51458475581","last_update_time":1570631742},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM5132nWSDHaiS8BeHaFmGvouosa2pwZbQVULFWMfEea3Y4VPNAx",1]],"weight_threshold":1},"balance":{"amount":"1185853","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-10T01:55:42","curation_rewards":362855,"delayed_votes":[],"delegated_vesting_shares":{"amount":"1010437296423","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"75581936633","last_update_time":1618770399},"governance_vote_expiration_ts":"2022-10-28T11:41:15","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-18T18:21:15","hbd_seconds":"68425809","hbd_seconds_last_update":"2021-04-18T19:53:36","id":15990,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-11-28T08:57:42","last_owner_update":"2017-10-12T20:07:30","last_post":"2019-05-10T14:44:27","last_post_edit":"2019-05-10T14:44:27","last_root_post":"2019-05-01T17:51:18","last_vote_time":"2020-01-22T21:35:06","lifetime_vote_count":0,"memo_key":"STM8YJx3MaxUa4uvocpdTiLTqUJ7odw4HABbZj5xCSeaZJtZL9r4W","mined":false,"name":"alao","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6LHNiGc5m21vMCrs4JZJhRXb3mytvievndUrxDVxXqjzQAFUnv",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3000,"post_voting_power":{"amount":"302327746534","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dev.steepshot",1],["dlive.app",1],["dmania.app",1],["esteemapp",1],["minnowbooster",1],["partiko-steemcon",1],["share2steem.app",1],["smartsteem.app",1],["steem-plus-app",1],["steeve.app",1],["utopian.app",1],["vimm.app",1]],"key_auths":[["STM8BCkWogHac2tCxzPYRjpKGkAzdDgnUdBUrQo1UPMqDiRD8muTm",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2347531,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2803392081696","vesting_shares":{"amount":"1312765042957","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"302327746534","last_update_time":1618770399},"withdraw_routes":0,"withdrawn":"2803392081696","witnesses_voted_for":28},{"active":{"account_auths":[],"key_auths":[["STM7c5nppSAjHZunZiRWX5aJLZZsUfSrPbu5quBtXB9DVTjZdzy2E",1]],"weight_threshold":1},"balance":{"amount":"120161790","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-08-19T19:02:09","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1598550861},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1405071,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8TnW3jMe7Nf85NYFzwaJvyYjKCEBnVq8BCxDNMT3ffUWEVr59e","mined":false,"name":"albrite2","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6rA25ACcC1cXbRm1AdAMfqYp2qua2CPVYu5sDFmBxibasasyb2",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6yMAE5hmzCgAzPybwhR4GWuGwjzztmskrdy8sSDkRK8xTtp1Km",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"oracle-d","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1598550861},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7qUv76qFQRRah5yjfjnQK5vYYcTXAEo9eoGMCjgV7Kv4xx9teC",1]],"weight_threshold":1},"balance":{"amount":"2464261","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-09-11T08:16:33","curation_rewards":122228,"delayed_votes":[],"delegated_vesting_shares":{"amount":"122371356803","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"66694702358","last_update_time":1618725234},"governance_vote_expiration_ts":"2022-09-10T21:39:39","hbd_balance":{"amount":"810581","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-30T05:12:03","hbd_seconds":"1331826912549","hbd_seconds_last_update":"2021-04-18T05:53:54","id":89912,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-07-20T07:11:54","last_owner_update":"2017-10-27T07:55:00","last_post":"2021-04-18T06:15:57","last_post_edit":"2021-04-18T06:15:57","last_root_post":"2021-04-18T06:15:57","last_vote_time":"2021-04-14T04:47:03","lifetime_vote_count":0,"memo_key":"STM7qiHq3n3CzjqRphoi5pFvwLpPs6eYMmUoaVXivFcT4HJ35kHep","mined":false,"name":"aldentan","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6xK2QksKngfkmNpicQYtUHzm3FNVBGdJPutUKP1mDMTbf2uSiC",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":5427,"post_voting_power":{"amount":"266778809435","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["busy.app",1],["dlive.app",1],["dmania.app",1],["dreply",1],["dtube.app",1],["steemhunt.com",1]],"key_auths":[["STM4yn2N9DBZFyWQjUSeVbiu4c2J4c6dE9aGUVYjDY1ybt65YPncg",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":6209968,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"414","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1387912615","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"734","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3803531271404","vesting_shares":{"amount":"389150166238","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"266778809435","last_update_time":1618725234},"withdraw_routes":0,"withdrawn":"3803531271404","witnesses_voted_for":17},{"active":{"account_auths":[],"key_auths":[["STM7ab5xCgJJNBQ1GECrb5Uc1iAi8bXcMeKJ82RzAmU2McYCDfrHp",1]],"weight_threshold":1},"balance":{"amount":"1931603","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-22T22:14:36","curation_rewards":1093443,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1921442364055","last_update_time":1619038488},"governance_vote_expiration_ts":"2022-10-05T07:34:06","hbd_balance":{"amount":"213187","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-15T10:37:54","hbd_seconds":"96854102424","hbd_seconds_last_update":"2021-04-20T22:52:36","id":167531,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-12-29T22:06:57","last_owner_update":"2020-07-19T22:25:51","last_post":"2021-04-20T21:47:27","last_post_edit":"2021-04-20T21:47:27","last_root_post":"2021-04-20T21:47:27","last_vote_time":"2021-04-21T20:54:48","lifetime_vote_count":0,"memo_key":"STM6EHZdjNZk7vNujPQLgq2XfaTbVQEWuT1DNkT1G9jMWresph2P7","mined":false,"name":"aleister","next_vesting_withdrawal":"2021-04-25T23:02:45","owner":{"account_auths":[],"key_auths":[["STM78GGxTSVhXKfBmnEDH9Nn4yABxtt8yECXGm6GkfRuRG3pCTNCP",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4428,"post_voting_power":{"amount":"8498154056816","nai":"@@000000037","precision":6},"posting":{"account_auths":[["cryptobrewmaster",1],["dpoll.xyz",1],["hive.blog",1],["leofinance",1],["peakd.app",1],["steemauto",1],["steempeak.app",1]],"key_auths":[["STM6RTkkQpxdfd4LsGNmygRfUdvazDdk8y2iKC2ibWa1WmiEp6FB8",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":13164326,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"portugalcoin","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"2130790362","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1127","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"10560999807698","vesting_shares":{"amount":"8498154056816","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"812384600593","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"7551631975956","last_update_time":1619038488},"withdraw_routes":0,"withdrawn":"2437153801779","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM6dV3uRZe6zS2R4rGNbNTU2tiN13qSEn27Kc5KjmprZYAuw2UnR",1]],"weight_threshold":1},"balance":{"amount":"3145869","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-17T04:44:54","curation_rewards":304,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1489725894},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-03-03T17:51:03","hbd_seconds":"0","hbd_seconds_last_update":"2019-03-03T17:51:03","id":138780,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-09-16T17:04:18","last_post_edit":"2018-09-16T17:04:18","last_root_post":"2018-09-16T17:04:18","last_vote_time":"2017-07-15T03:01:18","lifetime_vote_count":0,"memo_key":"STM7PEnLCcFbbp3G4CD5hDwJ9k8Q7n1tagdgQ8NwrY87JztzKnScJ","mined":false,"name":"alessibella","next_vesting_withdrawal":"2021-04-26T16:59:03","owner":{"account_auths":[],"key_auths":[["STM54qgzKBPNtfhLVTD3aGakbmtScYVoeKNSwDttMhzP4Ap1uNuuG",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":29221,"post_count":8,"post_voting_power":{"amount":"11916604761487","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7B6MQa8eXb9cZujZhLqqiG3KSp324TRGAJDSYP1sBHT2jWK1qt",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":4786,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"12","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-03-03T17:51:03","savings_withdraw_requests":0,"to_withdraw":"19349070278998","vesting_shares":{"amount":"11916604761487","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1488390021462","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"19358554868797","last_update_time":1551635025},"withdraw_routes":0,"withdrawn":"7441950107310","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5s2NQirqz8sK3WZhSbvSxNQar4j7R2izD926z6hDp1rQzoFzFH",1]],"weight_threshold":1},"balance":{"amount":"2297761","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-02-20T12:24:57","curation_rewards":48792,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1113358277878","last_update_time":1592908677},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"17990","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-06-23T10:37:57","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-23T10:37:57","id":133383,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-06-26T14:40:42","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-07-17T05:20:03","last_post_edit":"2019-07-17T05:20:03","last_root_post":"2019-07-17T05:20:03","last_vote_time":"2019-07-14T05:39:21","lifetime_vote_count":0,"memo_key":"STM7KYBa8Qrc1gjytWwg69Kgn5ttga1RudZKvBDdymDU1kjNzCsCx","mined":false,"name":"alexanarcho","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7KT9H3ykm4uCw1bQkJktoo3qQWaZMaJu642zDMNvvrf5SmTS8Y",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":681,"post_voting_power":{"amount":"9719298573","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM84gq4xfPUaMDKrCaofP6VGbus9zUa9t5XwVTCET48z7kwWxrfN",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":869624,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"13000","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-03-25T07:34:45","savings_withdraw_requests":0,"to_withdraw":"4443713812942","vesting_shares":{"amount":"9719298573","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4453433111515","last_update_time":1592908677},"withdraw_routes":0,"withdrawn":"4443713812942","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7nev4Z2W2T7oYbXk3embBgjpMUqvXjAZPLEaADvwG2Wz5uu18m",1]],"weight_threshold":1},"balance":{"amount":"3333914","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-12T16:23:42","curation_rewards":6161,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1468340622},"governance_vote_expiration_ts":"2022-08-13T11:56:06","hbd_balance":{"amount":"2910","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-03-11T07:31:09","hbd_seconds":"3019297644","hbd_seconds_last_update":"2018-03-23T07:49:45","id":17636,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-09-01T00:47:21","last_post_edit":"2016-09-01T00:47:21","last_root_post":"2016-09-01T00:47:21","last_vote_time":"2017-08-05T20:14:48","lifetime_vote_count":0,"memo_key":"STM5PYD4Tj2EYXhqXsAXUC5yLWNJexfDZESvrDhEvoGzs6yau4mP4","mined":false,"name":"alexfortin","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM76FsDeGbLu8dbcmr3X9xLr5mzmtHS4TNb3NvhosgdvFq8SLQXp",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":131,"post_voting_power":{"amount":"10067923011","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM67VumLqJ4reyNryni81sFAhTtwjJs3J3gZjYFuAMj9R379PYgz",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1654276,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"123849447","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"60","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"6693367934833","vesting_shares":{"amount":"10067923011","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1501964088},"withdraw_routes":0,"withdrawn":"6693367934833","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM5LEBa9RFT1SBAJsZTLcPtZvk84NWzZ8Ki7QV7NxTqochxwDWha",1]],"weight_threshold":1},"balance":{"amount":"1301704","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-17T18:40:24","curation_rewards":2039,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1468780824},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"3845","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":26418,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-08-09T01:29:12","last_post_edit":"2016-08-09T01:29:12","last_root_post":"2016-07-22T17:21:48","last_vote_time":"2017-04-28T14:01:21","lifetime_vote_count":0,"memo_key":"STM75EreFKZkoXHEwpPdT11zTBitWk5ksDnpFw2vZJvDmMyKXhW8U","mined":false,"name":"alexriethmeier","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6PqCcwDgqLEhYbWXFxG7Ls6rgeTyDv8SEiCQoDkrzBxAHrzz2Q",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":25,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8LupLPBY7Xnwa8znwLYWE9S4xuGdxGUJgyJ7R1KZL51UjhBJ3P",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2652,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2418201880456","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9950,"last_update_time":1493388081},"withdraw_routes":0,"withdrawn":"2418201880456","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5D7BepTY9dBTU1n4hiGiWSBaaDXRxd2Ln7X4rTryWtJk2b1WRP",1]],"weight_threshold":1},"balance":{"amount":"3585737","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-03T06:00:54","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1496469654},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":175358,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5z6tXTfZBjLM8iPUEi7BwBfCJC4hJkSByrYrfA3SHk82J5zErv","mined":false,"name":"alexwkh","next_vesting_withdrawal":"2021-04-27T16:45:00","owner":{"account_auths":[],"key_auths":[["STM8d37M4eFF4UqYNzMgdpKbcuyuYyvJPxDBoduDJidxoVsTJCBwA",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"4255433463769","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5Ky82eHebM3UV5HxD1CeQ1L8zXsq9r7R8fi8HvcjAp5P3NZK57",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"11039423581871","vesting_shares":{"amount":"4255433463769","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"849186429375","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1496469654},"withdraw_routes":0,"withdrawn":"6793491435000","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7b6LaF8rGNg2qcXbUHVk94K7kUF4V7bCLJQwMCJdNvfqJyZ8EY",1]],"weight_threshold":1},"balance":{"amount":"6455640","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-12T11:25:48","curation_rewards":422026,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"857296202506","last_update_time":1618658832},"governance_vote_expiration_ts":"2022-06-22T00:07:06","hbd_balance":{"amount":"1777","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-01-18T20:54:42","hbd_seconds":"0","hbd_seconds_last_update":"2020-01-18T20:54:42","id":255065,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-10-03T10:46:33","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-05-05T18:45:57","last_post_edit":"2019-05-05T18:45:57","last_root_post":"2018-06-05T22:10:39","last_vote_time":"2021-04-17T11:27:12","lifetime_vote_count":0,"memo_key":"STM8As7q7MwkHjLVRFn4y3dXMkVavQpcxPuzoK6skQ8pkZXVpAgFg","mined":false,"name":"alexzicky","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM52WCMcV5rKyhxMQDjtC21zHwKBvyaQ96p6af3RjwN1onYDpdaN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":734,"post_voting_power":{"amount":"3429184810024","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["esteemapp",1],["steemauto",1],["steempeak.app",1],["streemian",1]],"key_auths":[["STM7uZFyaenfiupH1uv1ThpbNSTBy6UUCBX7D9hhavF6vbABENxMT",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":989776,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"davinci.witness","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"8522670810272","vesting_shares":{"amount":"3429184810024","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3360601113823","last_update_time":1618658832},"withdraw_routes":0,"withdrawn":"8522670810272","witnesses_voted_for":13},{"active":{"account_auths":[],"key_auths":[["STM6xTmQC1Chd5JPTzTffeNRpdFQ9CubtZEnLSwstA4uohQcGHRhi",1]],"weight_threshold":1},"balance":{"amount":"1736165","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-24T08:09:48","curation_rewards":7373,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"296730380181","last_update_time":1619028000},"governance_vote_expiration_ts":"2022-10-05T20:41:30","hbd_balance":{"amount":"2774","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-18T03:00:00","hbd_seconds":"868816800","hbd_seconds_last_update":"2021-04-21T18:00:00","id":219404,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-01-19T11:33:30","last_owner_update":"2020-04-03T07:51:48","last_post":"2020-10-23T10:49:03","last_post_edit":"2020-10-23T10:49:03","last_root_post":"2020-08-07T10:30:06","last_vote_time":"2021-04-19T00:14:12","lifetime_vote_count":0,"memo_key":"STM6UeeNEFtNoiiVFr9rqCd6fhCH9urB4oasEHZRM7Kab7Xp3ZyiK","mined":false,"name":"alfonzo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8NaRmvu5WP3Mbs6UMeKwrWmwZcs8iKxjcYHWVzGP5ThR44Qg1u",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":338,"post_voting_power":{"amount":"1186921520728","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dclick.app",1],["dlike.app",1],["dpoll.xyz",1],["dtube.app",1],["ewd",1],["leofinance",1],["partiko-steemcon",1],["peakd.app",1],["rewarding",1],["steemauto",1],["steemhunt.com",1],["steempeak.app",1],["threespeak",1]],"key_auths":[["STM6bmJ3fQ42WBjU8K68GpCNDEYoRBNVACy9gisiwdgXrXyiH5hCs",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":98634,"proxied_vsf_votes":[0,0,0,0],"proxy":"theycallmedan","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1186921520728","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1186921520728","last_update_time":1619028000},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6rVWGdsSuqzS7RDSsoGSoVXA1ux55HZwYHj7pCvJPbtEram3Q5",1]],"weight_threshold":1},"balance":{"amount":"1797712","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-20T07:05:09","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":257915954,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":322182,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM552ECg9ZVPjRBPVYcUnC6SjZfrUigx9ikJus6gDbpWNofCJnT4","mined":false,"name":"alireza01","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7s1dT1RcF3Krmge7RjLKxKuCCFLZmKopr1G7rLdV8n9vF4JAv3",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1031663817","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7z4eKMLZ4gTQcGAEGVT1pznd7JATdSDD1irgXg9MkYMgdPv1cu",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1031663817","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1031663817,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6hMsNBG5ZsRnwxSLKEruyFFf6BW1TgpVYSRs3pb43NCjQLX4f9",1]],"weight_threshold":1},"balance":{"amount":"2442847","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-15T22:12:24","curation_rewards":276238,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1198831300877","last_update_time":1618390356},"governance_vote_expiration_ts":"2022-08-05T12:51:00","hbd_balance":{"amount":"346","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-15T17:48:33","hbd_seconds":"705672","hbd_seconds_last_update":"2021-04-15T17:50:45","id":198839,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-02-26T11:37:54","last_owner_update":"2020-02-26T11:37:54","last_post":"2021-04-14T08:51:51","last_post_edit":"2021-04-14T08:51:51","last_root_post":"2021-04-14T08:51:51","last_vote_time":"2021-04-14T08:52:36","lifetime_vote_count":0,"memo_key":"STM75L2k2k5bqVEEucHZeSmMk9kgR7eZDbehgjnhp8o4pZksX5ZxJ","mined":false,"name":"allfabeta","next_vesting_withdrawal":"2021-04-22T17:47:36","owner":{"account_auths":[],"key_auths":[["STM5ssTYbi6Hxnee4Lr9KFxB7tvGF3aF9GovYkwYPfdFv2L5timBd",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":5105,"post_voting_power":{"amount":"4795325203510","nai":"@@000000037","precision":6},"posting":{"account_auths":[["smartsteem",1],["streemian",1],["utopian.app",1]],"key_auths":[["STM5WTgseh1K6YZFcpb6KaFDQvN1uW2XRH5BvdvAbCzosDirs9xst",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":4162234,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"775","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"2998755910","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1586","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3596077955513","vesting_shares":{"amount":"4795325203510","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"276621381194","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4448015687489","last_update_time":1618390356},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":5},{"active":{"account_auths":[],"key_auths":[["STM66iiAE4z5auaroezLUB4e1M8cuiWdRdF2MLdN8dzE7qxjcYJBk",1]],"weight_threshold":1},"balance":{"amount":"1608382","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-29T00:03:00","curation_rewards":2942,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1467158580},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"4158","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-17T14:40:21","hbd_seconds":"7404886872","hbd_seconds_last_update":"2018-07-09T05:18:33","id":13856,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-08-29T17:49:15","last_owner_update":"2016-08-04T06:07:33","last_post":"2019-01-01T15:03:03","last_post_edit":"2019-01-01T15:05:42","last_root_post":"2019-01-01T15:03:03","last_vote_time":"2018-05-05T00:10:36","lifetime_vote_count":0,"memo_key":"STM7qFGbk3pVi1CmgTR5pChbUa995agHXiwNzkPfDnv9nRxeZXdzN","mined":false,"name":"almahinoa-dacal","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM54xcg4DEUqsnvjupWBCCuuvEQgQCt4V6bffpkdDSZ1HHM4qUAu",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":175,"post_voting_power":{"amount":"9579578311","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8KYrSzdwLr7wmStsUcLrbfD3WqaPD81RFwE6KxGsQT62715A11",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":124707,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5684470881430","vesting_shares":{"amount":"9579578311","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9998,"last_update_time":1525479036},"withdraw_routes":0,"withdrawn":"5684470881430","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5E6g6uwkWLkQwF4gQXqiudGJKate32VySJQLo1UnzNpdkxcKHC",1]],"weight_threshold":1},"balance":{"amount":"2532671","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-14T17:02:45","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":258831219,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":195928,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6sXJUWxtEyDv9UCb1MhJtV5H68uRTcEV8HQxPYxces64tmizat","mined":false,"name":"almonte","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7bLvmJ4wdDM1KasYD9TSezapUj8amJ5NmUBgYpJWhFy2bbdpQE",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1035324874","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7twqMvv3e55U14i3srUojMuPcbdHhGujDbH1Eeuon5adi37bRS",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1035324874","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1035324874,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM71ygsHATRSLu9ngzHLG4tGjD9eyFXe8zwjPnbT4eiPKJUsX8Eo",1]],"weight_threshold":1},"balance":{"amount":"1489376","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-03T22:05:09","curation_rewards":194,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1499119509},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"26526","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-05-29T20:08:21","hbd_seconds":"0","hbd_seconds_last_update":"2018-05-29T20:08:21","id":241678,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-03-06T02:54:30","last_post_edit":"2018-03-06T02:54:30","last_root_post":"2018-02-12T18:19:39","last_vote_time":"2018-03-07T15:07:15","lifetime_vote_count":0,"memo_key":"STM5NpYwV6upCPTnmrRuW11EvxR3WfxzyZccuoRtiULD1cVh77gqA","mined":false,"name":"alpav","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7ZRk8qkadSwUuHM48x7VRBfYo2iYoaKjvC44aVpregbZdHiXSD",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":57,"post_voting_power":{"amount":"183608712924","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7GhauHrzRgbYpVTnbzFbUyWuqy3R5DYtz9kQBHeUj219zidoAk",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2172,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2756755333892","vesting_shares":{"amount":"183608712924","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1520435235},"withdraw_routes":0,"withdrawn":"2756755333892","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7Wz3qohJpAbmmqBv9UUKBG14h9ueYkJspWot5yiX1JSiohwZZX",1]],"weight_threshold":1},"balance":{"amount":"1439416541","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-03-31T08:43:09","curation_rewards":790,"delayed_votes":[],"delegated_vesting_shares":{"amount":"969040171902605","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"9609526903","last_update_time":1603396395},"governance_vote_expiration_ts":"2022-06-03T15:36:06","hbd_balance":{"amount":"130","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-02T20:27:24","hbd_seconds":"7439956950510","hbd_seconds_last_update":"2021-03-20T02:52:51","id":483,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-03-15T07:05:15","lifetime_vote_count":0,"memo_key":"STM7Wz3qohJpAbmmqBv9UUKBG14h9ueYkJspWot5yiX1JSiohwZZX","mined":true,"name":"alpha","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7Wz3qohJpAbmmqBv9UUKBG14h9ueYkJspWot5yiX1JSiohwZZX",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"38438107615","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7Wz3qohJpAbmmqBv9UUKBG14h9ueYkJspWot5yiX1JSiohwZZX",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"blocktrades","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"969078610010220","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"38438107615","last_update_time":1603396395},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8eXE9M56bZ3HJ7UY2FXwV9TLrVST7Kuxaq71awayvqCke4J6uv",1]],"weight_threshold":1},"balance":{"amount":"56617065","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-10-29T02:24:51","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1540779891},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1160244,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7mX613wnujg7GCR3EVoMKecxtkzG7QwGUPbkN2VxMRgrv9xyQW","mined":false,"name":"alpha-homer","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM62bnYFqSLsgBLMASF4LfzPV25JwucYCwu44so14tcnHFCqXYcZ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM76XV4YSh4oLLG8MhGV2Dbr2kKedRDJDcCW7Bq29AhNbi53sfNS",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1540779891},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5nqy5ottNopV2a54HuXqsHS6dCZRVzo5Sk4Svh7wqaEGmtVTAv",1]],"weight_threshold":1},"balance":{"amount":"1299587","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-08-09T14:47:45","curation_rewards":1734,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"218234928428","last_update_time":1574878740},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"82486","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-11-04T18:58:21","hbd_seconds":"164759168754","hbd_seconds_last_update":"2019-11-27T18:19:00","id":1100988,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-06-27T14:40:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-11-27T18:18:21","last_post_edit":"2019-11-27T18:18:21","last_root_post":"2019-11-27T18:18:21","last_vote_time":"2019-11-27T18:18:39","lifetime_vote_count":0,"memo_key":"STM5dERz7c5d6n4pibX8jfZYcbxcY1EiwxwSTMP6dgHBSf9MrBxVe","mined":false,"name":"altcointrading","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8Tz9fRenqYoitp7P4pjtsqvqkpA3hgAEnupMo7MV7aHY7LLZyA",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":96,"post_voting_power":{"amount":"310253622913","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["busy.app",1],["dtube.app",1]],"key_auths":[["STM5kCjzWxhLXsAqhTX1bYhvE4Y3jNsZ66K6kZ9cyvAP9mReQHqYG",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3585750,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"9661","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"19039974428","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"9662","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"1828729795111","vesting_shares":{"amount":"310253622913","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"857049793604","last_update_time":1574878740},"withdraw_routes":0,"withdrawn":"1828729795111","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7vNDpbfRXJ9HiJaTaP5vXMLUXn1MU8eDbWEBBwvbc7sFyH3nwi",1]],"weight_threshold":1},"balance":{"amount":"2166704","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-03-24T21:02:42","curation_rewards":0,"delayed_votes":[{"time":"2021-04-19T11:48:57","val":"189080307083"}],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"70318983091","last_update_time":1618832937},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1373113,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM87B9sSv6wWA2Vfcpore833LbnmajL9HHF8Rc4DpwuxWfxtSu9Y","mined":false,"name":"altincilek","next_vesting_withdrawal":"2021-04-22T23:07:45","owner":{"account_auths":[],"key_auths":[["STM8A6w1BWga9hKUevJRjzbAgTWRrs5eqpK3wWFEAB5RuB4NGmH2B",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"301949219560","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5zJWaM8W1aFLJnUVaRTeD4MJtB5zFinfCmNGrKQ777k1qmNV8C",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steemmonsters","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"268752733473","vesting_shares":{"amount":"301949219560","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"20673287191","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"281275932369","last_update_time":1618832937},"withdraw_routes":0,"withdrawn":"165386297528","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5tHmaBzoVa7wkUCGEtfNHZgrT6ot3tpQrRZzFgNCqMGwsqrXcp",1]],"weight_threshold":1},"balance":{"amount":"2020595","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-06-07T22:22:27","curation_rewards":726696,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6345089389134","last_update_time":1619037060},"governance_vote_expiration_ts":"2022-08-20T06:30:12","hbd_balance":{"amount":"562","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-10T15:22:39","hbd_seconds":"470289132","hbd_seconds_last_update":"2021-04-20T08:25:12","id":1028394,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-01-12T21:34:21","last_owner_update":"2019-03-25T15:58:42","last_post":"2021-04-19T20:02:57","last_post_edit":"2021-04-19T20:03:21","last_root_post":"2021-04-19T20:02:57","last_vote_time":"2021-04-21T20:31:00","lifetime_vote_count":0,"memo_key":"STM4wcEuy6khpprMb27TDZ1RhafRoxQf2GrN4BicwG6meXwzDptRd","mined":false,"name":"altonos","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4uTwuRBa1jXV6jv8bPmEeKkfuM2s9mEuQJjHpLzGLNNaFQGGrW",1]],"weight_threshold":1},"pending_claimed_accounts":114,"pending_transfers":0,"post_bandwidth":0,"post_count":768,"post_voting_power":{"amount":"25380357556538","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dclick.app",1],["dpoll.xyz",1],["drugwars.app",1],["dtube.app",1],["fundition.app",1],["holybread.app",1],["nextcolony",1],["peakd.app",1],["skyroad",1],["steem-plus-app",1],["steemauto",1],["steemknights",1],["steempeak.app",1],["steemplay.app",1],["threespeak",1],["vimm.app",1]],"key_auths":[["STM6bLttQPApcSqhFNi2ZnfYveMBsWWxoxBxxzPfMumBcEVL9SQej",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1784250,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"5839678847041","nai":"@@000000037","precision":6},"recovery_account":"satren","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"9359067761","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"4950","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"19540678709497","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"25047210294261","last_update_time":1619037060},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM8hoJbDo4kjvFYpYLFBKCrFGBWsydMWwdoRxTw6u2EqyHGff21d",1]],"weight_threshold":1},"balance":{"amount":"1408826","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-03T11:41:00","curation_rewards":7913,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"79985668687","last_update_time":1597579935},"governance_vote_expiration_ts":"2022-08-30T21:03:21","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-11-25T07:19:48","hbd_seconds":"0","hbd_seconds_last_update":"2020-08-16T12:12:15","id":10808,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-08-04T16:07:27","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-07-07T06:33:42","last_post_edit":"2018-07-07T06:33:42","last_root_post":"2016-07-29T09:32:39","last_vote_time":"2018-11-16T19:54:27","lifetime_vote_count":0,"memo_key":"STM8hoJbDo4kjvFYpYLFBKCrFGBWsydMWwdoRxTw6u2EqyHGff21d","mined":true,"name":"aluma","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8hoJbDo4kjvFYpYLFBKCrFGBWsydMWwdoRxTw6u2EqyHGff21d",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":39585,"post_count":5039,"post_voting_power":{"amount":"319942674750","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6RqLyX25JZTpSbCQuX6BSJs55zkagVww7i6YmnZDUZygFHezPu",1],["STM8hoJbDo4kjvFYpYLFBKCrFGBWsydMWwdoRxTw6u2EqyHGff21d",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":7084999,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":100000000,"vesting_shares":{"amount":"319942674750","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"319942674750","last_update_time":1597579935},"withdraw_routes":0,"withdrawn":100000000,"witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM8ahsNpdcXRDqZdF9jCW4agcfgTqpBhvtZn1TDEuBTEEBoMe2g6",1]],"weight_threshold":1},"balance":{"amount":"1154306","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-14T18:09:51","curation_rewards":1778,"delayed_votes":[],"delegated_vesting_shares":{"amount":"19400994422477","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"20920914891","last_update_time":1584050235},"governance_vote_expiration_ts":"2022-10-18T13:50:39","hbd_balance":{"amount":"61","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-06-09T18:03:21","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-09T18:03:21","id":261197,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-17T01:28:39","last_owner_update":"2020-03-17T01:28:39","last_post":"2019-05-15T04:58:39","last_post_edit":"2019-05-15T04:58:39","last_root_post":"2019-05-09T03:06:24","last_vote_time":"2019-09-29T13:36:09","lifetime_vote_count":0,"memo_key":"STM5XxMHEPfY8kPDXaunsnBtsDwqrfWLpWA6QUoYUPbke7v5JDbU8","mined":false,"name":"aluthra7","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6PqD7YBmFSR4pBL4uSxqqZpQ2t2BVeq9E3dfeyCgxr1BVS5uDd",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":21,"post_voting_power":{"amount":"83683659567","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6g8yjqyZnjQ4UNQsJ2Pjy8KL1DtAsPjX3JCXTiCXN2EfTbWpJ6",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3750,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"19484678082044","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"83683659567","last_update_time":1584050235},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8BxBmzr1DeKZ1T8hiNaP3Jmp2KPACBSQu27e92BPFZ5rWEdHf2",1]],"weight_threshold":1},"balance":{"amount":"4701545","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-22T21:52:27","curation_rewards":2599106,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"99820596747","last_update_time":1619029221},"governance_vote_expiration_ts":"2022-10-19T20:33:51","hbd_balance":{"amount":"12","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-08T13:15:09","hbd_seconds":"12427128","hbd_seconds_last_update":"2021-04-20T12:55:03","id":29799,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-07-28T09:04:39","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-12-05T18:03:39","last_post_edit":"2020-12-05T18:03:39","last_root_post":"2020-12-04T18:40:24","last_vote_time":"2021-04-21T18:20:21","lifetime_vote_count":0,"memo_key":"STM5DAkqx8mAZGZEy67r74xJJhkgB67CmacoEhU3GG8UpmF2hSfuU","mined":false,"name":"always1success","next_vesting_withdrawal":"2021-04-23T18:33:27","owner":{"account_auths":[],"key_auths":[["STM6mPY3TMur4eVLCb7yCk1CDmJ5Ei1TB6jFFEXUtKRSSycmiRutH",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":14792,"post_count":5068,"post_voting_power":{"amount":"435387996401","nai":"@@000000037","precision":6},"posting":{"account_auths":[["streemian",1]],"key_auths":[["STM8gy4fLuy2fGmbHmSZiq9QHSo7qwzP9ttnU4dVX35B62ihBWqMi",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":7209583,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"187171781","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"99","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2016-12-07T23:10:51","savings_hbd_seconds":"6770049","savings_hbd_seconds_last_update":"2016-12-13T23:50:24","savings_withdraw_requests":0,"to_withdraw":"469372922354","vesting_shares":{"amount":"435387996401","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"36105609412","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"296765718989","last_update_time":1619029221},"withdraw_routes":0,"withdrawn":"36105609412","witnesses_voted_for":16},{"active":{"account_auths":[],"key_auths":[["STM8cPMbM2PrTC1ALBsv1JbaBwq8GsKriHby2FTXFfzgKQJKcAoNC",1]],"weight_threshold":1},"balance":{"amount":"1432484","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-11T16:36:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1505147787},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-11-28T20:35:54","id":363385,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-31T21:26:27","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5QCVUVeWyWkSKdDDtJEFyU6yCc77xNk5qJNLv4FtQdsNrnRBDu","mined":false,"name":"amaigus","next_vesting_withdrawal":"2021-04-26T21:13:03","owner":{"account_auths":[],"key_auths":[["STM7VXFtJs5YUP3R6ohnvbX7uQTmLdhhFXKoRkqcbDjWKwVZUKQCJ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1705894662266","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7E2FifR3EuH7nffm4JjjaiB7ENdKX2TeqPVR6dR11a4JdPgdnB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4410620939377","vesting_shares":{"amount":"1705894662266","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"339278533799","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4420122932658","last_update_time":1543437297},"withdraw_routes":0,"withdrawn":"2714228270392","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7waJFi7BghdQiUpzChmoqfwhL3dwQo3iHXLZiAjh5EGYfsLLGV",1]],"weight_threshold":1},"balance":{"amount":"1346197","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-25T13:27:27","curation_rewards":216161,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"198826968706","last_update_time":1605892398},"governance_vote_expiration_ts":"2022-09-23T05:02:03","hbd_balance":{"amount":"34152","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-11-20T17:13:18","hbd_seconds":"7734384","hbd_seconds_last_update":"2020-11-20T17:14:00","id":9761,"is_smt":false,"json_metadata":"","last_account_recovery":"2016-07-19T22:04:51","last_account_update":"2020-01-14T08:13:48","last_owner_update":"2016-07-31T19:56:21","last_post":"2020-04-27T10:10:06","last_post_edit":"2020-04-27T10:10:06","last_root_post":"2020-04-27T10:10:06","last_vote_time":"2020-05-26T06:17:30","lifetime_vote_count":0,"memo_key":"STM6o87jgrGeDRQMywQscktEYA6FRMyzmjbVTB8t7gzJcgAyj8u1m","mined":false,"name":"amartinezque","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8m5j3XSQCRZoXnRWBs8hUtaSMxdA9ZS9dDBvLvqoLHpvKAMM6H",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":15747,"post_count":1413,"post_voting_power":{"amount":"795307874827","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6eenBMeM9YsNr2j8xHyeyKmVFVK6bkUww9unNruAcVfXCTynhp",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":8402258,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"20993345343142","vesting_shares":{"amount":"795307874827","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"795307874827","last_update_time":1605892398},"withdraw_routes":0,"withdrawn":"20993345343142","witnesses_voted_for":28},{"active":{"account_auths":[],"key_auths":[["STM6oHJ5hJBNkhTpHocGqyJ24BUtDEaRhZMWvXz1XygaEJ2p7XunY",1]],"weight_threshold":1},"balance":{"amount":"288665804","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-16T12:11:33","curation_rewards":511,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"143942261447431","last_update_time":1595749581},"governance_vote_expiration_ts":"2022-11-13T07:37:30","hbd_balance":{"amount":"504","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-11-27T12:41:06","hbd_seconds":"266757372","hbd_seconds_last_update":"2019-12-08T12:41:42","id":2394,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2016-08-24T21:58:03","lifetime_vote_count":0,"memo_key":"STM6oHJ5hJBNkhTpHocGqyJ24BUtDEaRhZMWvXz1XygaEJ2p7XunY","mined":true,"name":"america","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6oHJ5hJBNkhTpHocGqyJ24BUtDEaRhZMWvXz1XygaEJ2p7XunY",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6oHJ5hJBNkhTpHocGqyJ24BUtDEaRhZMWvXz1XygaEJ2p7XunY",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"575769045789727","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"575769045789727","last_update_time":1595749581},"withdraw_routes":0,"withdrawn":"575769045789727","witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM6cvouMKqE12BTtgmzBbX453vyZPskSJup7MVQBquSUW2HhhXnk",1]],"weight_threshold":1},"balance":{"amount":"1224537","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-13T06:15:48","curation_rewards":499,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1468390548},"governance_vote_expiration_ts":"2022-10-03T06:18:36","hbd_balance":{"amount":"6932","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-05-10T07:28:21","hbd_seconds":"0","hbd_seconds_last_update":"2019-05-10T07:28:21","id":19113,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-09-22T04:15:54","last_post_edit":"2017-09-22T04:27:06","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2019-03-30T23:12:00","lifetime_vote_count":0,"memo_key":"STM4yUSF4n7jqg6i59s3YDd8igRjAGnY6jCEf2VrH8hSdxfXv9s1Z","mined":false,"name":"amirabrams","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM67y62Ta8bjSSHTEqAVnoVELPCTcdUtjYN6MRjNjTniAZKvDXxM",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4,"post_voting_power":{"amount":"2380527031905","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6qyyNJpRQv8SYbjdDYHeRrAce2sxGK2iKWES9iQUupTaXjYnG3",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":284,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":4231162553,"vesting_shares":{"amount":"2380527031905","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2380527031905","last_update_time":1557473301},"withdraw_routes":0,"withdrawn":4231162553,"witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM4yWg3zLXRjMEGimSqn2eKveHxJ8mWpDMeCT9rM2jZaYpFMR7eA",1]],"weight_threshold":1},"balance":{"amount":"2161563","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-08-14T16:10:00","curation_rewards":13,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1534263000},"governance_vote_expiration_ts":"2022-09-16T12:09:45","hbd_balance":{"amount":"584","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-06-28T06:33:03","hbd_seconds":"1547870064","hbd_seconds_last_update":"2019-07-23T09:03:24","id":1103777,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-10-29T10:35:33","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-12-19T00:12:24","lifetime_vote_count":0,"memo_key":"STM7yCVRnj3yN8M4gXP221YUKQA6ycRcLPt1MdWs975fuqV8ky6X5","mined":false,"name":"amoresperros","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8gBp4punnqmN11iPr54HqwFfGErEP6qeDA1kzgYkgVMsoVrVBY",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"9933767947","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dtube.app",1]],"key_auths":[["STM5g3innSiZfx486jJsE5vUAiEiuFmkxzKvEHp6KiVDHtnrDDY1i",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-08-20T15:52:12","savings_hbd_seconds":"197788347","savings_hbd_seconds_last_update":"2018-08-31T00:15:06","savings_withdraw_requests":0,"to_withdraw":"4269561172946","vesting_shares":{"amount":"9933767947","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4279494940893","last_update_time":1563981237},"withdraw_routes":0,"withdrawn":"4269561172946","witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM84WkYDyLKVgWVA5z5AGQNyc6Q4n9dKnt7uR9htpXRrJzjpiiWF",1]],"weight_threshold":1},"balance":{"amount":"2506740","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-09-26T02:41:45","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1220412516006","last_update_time":1570385301},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1322738,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5LPxqx23wZi4EpLHhNTMmhQTTJ2En5zqvpE3x3BFCbSd8gEqLz","mined":false,"name":"amunmakani","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4vSZT1ognRidnmNUzWcnkg1YC4v6rs7PwsU1AgAsA5Q6TY5gWS",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"9760722718","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6vWBXgWemCmBUvdfYWJj4bUpwZrcGRd72d1EqjhoyHvZGQPwLS",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4871889341309","vesting_shares":{"amount":"9760722718","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4881650064027","last_update_time":1570385301},"withdraw_routes":0,"withdrawn":"4871889341309","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7RT29UNrj5idrX9VttEQaTkUL1hYrooUhbpWYW4eTo64pyBSCQ",1]],"weight_threshold":1},"balance":{"amount":"2100722","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-12T22:22:06","curation_rewards":545475,"delayed_votes":[],"delegated_vesting_shares":{"amount":"206247219969","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1620558931175","last_update_time":1619037771},"governance_vote_expiration_ts":"2022-10-24T07:45:27","hbd_balance":{"amount":"87667","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-02T03:46:12","hbd_seconds":"98657230638","hbd_seconds_last_update":"2021-04-19T03:59:24","id":186866,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-24T20:52:42","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-21T02:31:48","last_post_edit":"2021-04-21T02:31:48","last_root_post":"2021-04-21T02:31:48","last_vote_time":"2021-04-21T20:42:51","lifetime_vote_count":0,"memo_key":"STM6GvsQ8HNDpyA9ZyBfWPWZCTfU2fRXmywgNbMD2AYkwmMxTjHSa","mined":false,"name":"anacristinasilva","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8YzgZG9ijDVWuzk8As2WfZoCG1gAabG46tV1DqWPJjfygERNra",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4090,"post_voting_power":{"amount":"6482235724701","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dbuzz.app",1],["dmania.app",1],["leofinance",1],["minnowbooster",1],["peakmonsters.app",1],["smartsteem",1],["steemauto",1]],"key_auths":[["STM6cHshNiYCoqJMp6x4zzHMhgvEvtZZJCCoVJVFgV1GR8dTq18JC",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":6017872,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"5629","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"23142095921","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"12239","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2805412663739","vesting_shares":{"amount":"6688482944670","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"5307040648297","last_update_time":1619037771},"withdraw_routes":0,"withdrawn":"2805412663739","witnesses_voted_for":8},{"active":{"account_auths":[],"key_auths":[["STM7ryEhfu7aseWhXTAN1Xjz2WdyJaX1KfbTYz5n3249cAEyAwooX",1]],"weight_threshold":1},"balance":{"amount":"1786298","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-28T19:02:39","curation_rewards":2062,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"118776944195","last_update_time":1584703806},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-11-23T18:46:33","hbd_seconds":"307050","hbd_seconds_last_update":"2018-11-25T13:25:18","id":533420,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-12-31T02:43:48","last_owner_update":"2017-12-28T19:08:03","last_post":"2019-01-08T03:09:15","last_post_edit":"2019-01-08T03:09:15","last_root_post":"2018-11-26T04:07:12","last_vote_time":"2020-03-20T11:30:06","lifetime_vote_count":0,"memo_key":"STM6XfbjhLBWCKZz83csEFueQJoQMuSWLuhjjtB64JhqMG5rMiV26","mined":false,"name":"anarchaforko","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7vABuabwJshHsY8CuJKAqK28Bz9R9D57aCkrQh8kCyszjwSgKz",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":39,"post_voting_power":{"amount":"475107776781","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8LazteZMxJTLJsSPntjpZbbHkcKWqBiyKyZydysTQnBD4tgFvc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":53637,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"579","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"3612757489","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1800","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"475107776781","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"474157561227","last_update_time":1584703806},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8J4LWaYQd29a7EDjHvSswSy4gScghVq8rrzKv4ZqphArZPeVWb",1]],"weight_threshold":1},"balance":{"amount":"7012947","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-03T09:44:39","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1459676679},"governance_vote_expiration_ts":"2022-11-21T07:57:21","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":794,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8J4LWaYQd29a7EDjHvSswSy4gScghVq8rrzKv4ZqphArZPeVWb","mined":true,"name":"anarchist","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8J4LWaYQd29a7EDjHvSswSy4gScghVq8rrzKv4ZqphArZPeVWb",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8J4LWaYQd29a7EDjHvSswSy4gScghVq8rrzKv4ZqphArZPeVWb",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"dele-puppy","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"14528996307695","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1459676679},"withdraw_routes":0,"withdrawn":"14528996307695","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM73S9Y5Aa31bJgJxdbh8QUpjcVfjQUVVAoCs5KeBm6E1axcfoMD",1]],"weight_threshold":1},"balance":{"amount":"5473955","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-11-07T15:12:12","curation_rewards":71456,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2054267520206","last_update_time":1581305121},"governance_vote_expiration_ts":"2022-09-10T05:30:36","hbd_balance":{"amount":"619","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-10T03:25:21","hbd_seconds":"0","hbd_seconds_last_update":"2020-02-10T03:25:21","id":109710,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-02-10T03:27:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-01-30T17:14:54","last_post_edit":"2019-01-30T17:14:54","last_root_post":"2018-10-05T13:37:54","last_vote_time":"2018-11-20T03:50:54","lifetime_vote_count":0,"memo_key":"STM58TaYG4QPuRr7Ck9Z2yDwTdwHMqv5rL6sTN1c9teEYxyDZgLLa","mined":false,"name":"anarchrysalis","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8aFXVYNtkp7dXZXBiuDP795Hyzr4sot87DkmQ6GgU4knfsWAc7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":1201,"post_voting_power":{"amount":"8217070080827","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM67tMk5YsxmyaPjrFUQsy1gwcPBGdLMNqyDYCQdsyTPhvNEyVjb",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2737661,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"10073582817851","vesting_shares":{"amount":"8217070080827","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"8217070080827","last_update_time":1581305121},"withdraw_routes":0,"withdrawn":"10073582817851","witnesses_voted_for":6},{"active":{"account_auths":[],"key_auths":[["STM6R7s43fUyojUqYKVEp2UedDTiWZGqVXE1G2cwpQa3Cg5yM7JD7",1]],"weight_threshold":1},"balance":{"amount":"4263164","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-26T03:04:51","curation_rewards":79811,"delayed_votes":[],"delegated_vesting_shares":{"amount":"851519758559","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"882949294074","last_update_time":1619038842},"governance_vote_expiration_ts":"2022-09-07T09:12:42","hbd_balance":{"amount":"85","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-26T17:59:42","hbd_seconds":"315249750","hbd_seconds_last_update":"2021-04-21T20:59:39","id":35496,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-10T10:05:48","last_owner_update":"2020-07-29T04:05:30","last_post":"2021-04-19T11:54:33","last_post_edit":"2021-04-19T11:54:33","last_root_post":"2021-04-19T11:54:33","last_vote_time":"2021-04-21T21:00:42","lifetime_vote_count":0,"memo_key":"STM5xaNtPpUWMkrfN2KM3b6K4u5Uufd9sQEPcii71xPgJxmsfPM1q","mined":false,"name":"anarcist69","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8hPEg5BFqYRqwQC2uN9DHRS3R5MkRnrZT4maQAaeX4ek1CPzWw",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":455,"post_voting_power":{"amount":"3531797176296","nai":"@@000000037","precision":6},"posting":{"account_auths":[["anarcist-dev",1],["ecency.app",1],["piggy-bubba",1],["steemauto",1],["threespeak",1],["vimm.app",1]],"key_auths":[["STM7Muoo8Bdwo2Bkgb2EQgtyTgs4wAn1iPizbRLMi1SM7BaqtaUki",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":694383,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anarcist","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"4383316934855","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2661721864645","last_update_time":1619038842},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":21},{"active":{"account_auths":[],"key_auths":[["STM6fK43LCovaVdb7ACYUsZsUHavBHQfpWQy4xf9UufzoJF6tTtJ6",1]],"weight_threshold":1},"balance":{"amount":"183135618","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-03-25T00:09:54","curation_rewards":58099,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1458864594},"governance_vote_expiration_ts":"2022-06-03T15:36:39","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2017-12-25T23:27:18","hbd_seconds":"0","hbd_seconds_last_update":"2017-12-25T23:27:18","id":167,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-03-15T07:04:42","lifetime_vote_count":0,"memo_key":"STM6fK43LCovaVdb7ACYUsZsUHavBHQfpWQy4xf9UufzoJF6tTtJ6","mined":true,"name":"anastacia","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6fK43LCovaVdb7ACYUsZsUHavBHQfpWQy4xf9UufzoJF6tTtJ6",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"206820812","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6fK43LCovaVdb7ACYUsZsUHavBHQfpWQy4xf9UufzoJF6tTtJ6",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"blocktrades","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"435195084562108","vesting_shares":{"amount":"206820812","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9950,"last_update_time":1489561482},"withdraw_routes":0,"withdrawn":"435195084562108","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM54HkQYdw4SrnQsJPGiDGHZ1h7icj2Mer3mCjNN9s5zAwFaQu9W",1]],"weight_threshold":1},"balance":{"amount":"5196347","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-10T14:39:54","curation_rewards":1527962,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2836710457929","last_update_time":1617142002},"governance_vote_expiration_ts":"2022-10-05T14:59:30","hbd_balance":{"amount":"153240","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-01-14T19:29:57","hbd_seconds":"0","hbd_seconds_last_update":"2021-01-14T19:29:57","id":11721,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-11-18T17:49:45","last_owner_update":"2019-02-21T18:18:54","last_post":"2021-03-30T22:07:42","last_post_edit":"2021-03-30T22:07:42","last_root_post":"2021-03-30T22:07:42","last_vote_time":"2021-03-30T22:06:42","lifetime_vote_count":0,"memo_key":"STM7pPKefGo9rjK4Tny9Fy5k7j2dxwkD3tpGEeqVH434jLJCg9VMd","mined":false,"name":"andrarchy","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8jWd2TPXyBMWuMaBstuS8vhsJWzet8YQUjn9ALM2zdF36f1bfn",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":2751,"post_voting_power":{"amount":"11346841831716","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["decentmemes.app",1],["dev.steepshot",1],["downvote-tool",1],["dpoll.xyz",1],["drugwars.app",1],["dtube.app",1],["ecency.app",1],["esteem-app",1],["esteemapp",1],["finally.app",1],["haveyoubeenhere",1],["learningpaths",1],["leofinance",1],["memestagram-app",1],["nextcolony",1],["oracle-d.app",1],["partiko-steemcon",1],["peakmonsters.app",1],["steem-plus-app",1],["steemauto",1],["steemgg.app",1],["steemhunt.com",1],["steempeak.app",1],["steempress.app",1],["steemstem-app",1],["steeve.app",1],["threespeak",1],["utopian.app",1],["vimm.app",1]],"key_auths":[["STM5xuiy6ZRQo4yD86bP7kFQdAdEVfiw6aqmgQpS9oHwi7e35tQJz",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":57488521,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"gerbino","reset_account":"null","reward_hbd_balance":{"amount":"38431","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"326217540789","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"171529","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-05-31T19:54:27","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-05-31T19:54:27","savings_withdraw_requests":0,"to_withdraw":"19652080358998","vesting_shares":{"amount":"11346841831716","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"11119904995081","last_update_time":1617142002},"withdraw_routes":0,"withdrawn":"19652080358998","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM8RhiLXrFysJFjjogsjLEAvLJAkRh1CTcT8jDX5xvEM1m2kpEWP",1]],"weight_threshold":1},"balance":{"amount":"1331107","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-04-20T17:24:24","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4672579626","last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":148749,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-12-07T17:10:36","last_owner_update":"2017-09-05T16:00:51","last_post":"2017-09-09T06:46:33","last_post_edit":"2017-09-09T06:46:33","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6PQkaxpstwZcy5Yeqy7p5Wbc7dAYGVFokLzMHVYdziZv3n6RLU","mined":false,"name":"andre.alessandro","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8Z9aVhyhM26PLNaQ4n1hxud4eJ3sMQgjFTMXmWxwwmS1EmLyvd",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"18690318502","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5XuU4Dt1NbHYCdFMzixXsVnZyPDUxmQyYcT7U49m75jZYMYErK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"18690318502","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"18690318502","last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7djh7qJoDDYsh6fzsDfHXuUXz3wMUVpMz6aHPm71g7jG7inba1",1]],"weight_threshold":1},"balance":{"amount":"1931132","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-10-09T19:59:27","curation_rewards":18,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"22477111030","last_update_time":1590600861},"governance_vote_expiration_ts":"2022-11-26T01:10:18","hbd_balance":{"amount":"61","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-30T20:21:24","hbd_seconds":"0","hbd_seconds_last_update":"2021-03-30T20:21:24","id":1147488,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-24T13:05:27","last_owner_update":"2018-10-09T20:22:57","last_post":"2020-03-05T12:49:06","last_post_edit":"2020-03-05T12:49:06","last_root_post":"2020-03-05T12:49:06","last_vote_time":"2020-03-06T16:57:33","lifetime_vote_count":0,"memo_key":"STM87Sy16SACdPzVJX4jbi9wussUyadqoXF98zv9k96JGkTrTHaVQ","mined":false,"name":"andreanerazzurro","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8b8KDk1auzss4Bk9yNjVqKJWVNNhkMbLhntKXXTrzznAveDTGz",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":67,"post_voting_power":{"amount":"89908444123","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1]],"key_auths":[["STM6CBu6MxNFU2nXQpAj1N31xTfuyGzbMGnZyhKKMEQxS8QCQrPit",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":41457,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"fedesox","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"89908444123","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"89908444123","last_update_time":1590600861},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7kdxECVU62XjPvcK36aEyskY3QLDos3coTTtbXCmJp4kvJM3gi",1]],"weight_threshold":1},"balance":{"amount":"5937828","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-11T23:02:30","curation_rewards":266492,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":2420768689,"last_update_time":1610248710},"governance_vote_expiration_ts":"2022-10-27T11:49:09","hbd_balance":{"amount":"212","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-23T13:51:33","hbd_seconds":"0","hbd_seconds_last_update":"2021-03-23T13:51:33","id":756583,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-26T14:24:09","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-04-26T14:08:51","last_post_edit":"2020-04-26T14:08:51","last_root_post":"2020-04-15T01:31:57","last_vote_time":"2020-04-27T13:03:39","lifetime_vote_count":0,"memo_key":"STM7bNaum6F5NhrP1WgRgo4T22ukVuDAsQ2tFSfyKHo2MJhm1sQBK","mined":false,"name":"andreasgrubhofer","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6aeELLvE54R2FRKpqbqkra4DZDDn7JE1KWPbZH1BnwDiJYfmZK",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3101,"post_voting_power":{"amount":"9683074756","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1]],"key_auths":[["STM7WSKgq7TfKd8TstfEtrEi1SMy7QjTXwp5qbHn4h66jf3pA8nBf",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":302178,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"759058207956","vesting_shares":{"amount":"9683074756","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"9683074756","last_update_time":1610248710},"withdraw_routes":0,"withdrawn":"759058207956","witnesses_voted_for":10},{"active":{"account_auths":[],"key_auths":[["STM7sAQiEAnDYtG926R2W6MPsafg5W63HUP3QuVEYmBdqapS546DB",1]],"weight_threshold":1},"balance":{"amount":"1745917","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-16T18:25:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1494959127},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":161907,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8Y7nkUhhLa9si6JpDZTgrjZ5YpyJngfxtXhkkdTo8thojR8gtR","mined":false,"name":"andrenag","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5d6bARRJTzCH8yDojnMTymVpqyXozxaJyx8ZohXUd5qGH7vFPv",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"366415380760","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8Lv86mhhv69dw29vpKm4avLAWrCF6ib8934PXs195pg1ZSijjD",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"366415380760","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1494959127},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5XGsFZR4UqoJFSZaiBKSiL4DMEfxxGFSYo9VNiirSaaQTnDsCQ",1]],"weight_threshold":1},"balance":{"amount":"1709779","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-08T23:04:09","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1507503849},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":401473,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-10-11T12:23:33","lifetime_vote_count":0,"memo_key":"STM52MxAzuSnvjFnVP9vUB5jWGDN9WA8abQutGYpQKdDbgNrL2pgx","mined":false,"name":"andrew.ning","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM57xpQDjLw6pjvX3va8ubPARwZtvZ59Hh6jLUJ4mYrKkfUQmLM5",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5DMYHaJo2mPmEdXRCqWKiRmwSHtjC7fSqUj24fU9ZDf4gjc7To",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3478087962183","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9604,"last_update_time":1507724613},"withdraw_routes":0,"withdrawn":"3478087962183","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM77XCtRX9NUJhg3kQDsfN9oih9P7fF5YYuu1DvVd8rSCk2k4jj5",1]],"weight_threshold":1},"balance":{"amount":"1199991","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-19T14:23:36","curation_rewards":17,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":527692386,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"614","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":206127,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-07-25T06:19:57","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-01-05T14:01:33","last_post_edit":"2018-01-05T14:01:33","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-04-26T16:57:21","lifetime_vote_count":0,"memo_key":"STM78CGQM6TxmGP6WEVi3xc4ooEvKfFZTxCAEF1DfmUXA1iMszWwE","mined":false,"name":"andrewamies","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5daPpbSJjHK8mtNHwsY1jCq5NcBigrkR98MzBgtxDaGtg5iju8",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":28,"post_voting_power":{"amount":"2110769543","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7etUSmSyZCZeb3R2S8KmRuUefMBHgqG12KZgwqxo7MYLzJwAfu",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1015,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"10237755","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"5","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"2110769543","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":2110769543,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM52utfe4XY4DnENnUtavH7ZAooYrypwhcBKhwP8ERg9oNho8B59",1]],"weight_threshold":1},"balance":{"amount":"1753709","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-29T13:56:51","curation_rewards":504,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1469800611},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"29925","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":41202,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-06-15T18:19:57","last_post_edit":"2017-06-15T18:19:57","last_root_post":"2017-06-07T16:28:24","last_vote_time":"2017-06-28T14:40:42","lifetime_vote_count":0,"memo_key":"STM8WiLRjcZczvtCx5dwBCMJ5JUom3oz7GsUQnHYaDoyQEJw5KCXe","mined":false,"name":"andrewfoodist","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5T3VYfUZ4G1aRyBjiCSTn1SVezyJ47U7syYiMhmHe8Nor1R9Mb",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":60,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6BtEnCMcYLtaSAFjd5DL4s5KQGiigLAmsNG7CrS83UB39ncfFU",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1939731,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"143","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"285661183","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"138","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2330281463029","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1498660842},"withdraw_routes":0,"withdrawn":"2330281463029","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM64FXzr7zAQNRqt6MJq9rdyS38XYWvoLS7AFJ9E4X848JTLniTr",1]],"weight_threshold":1},"balance":{"amount":"2318995","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-13T18:35:21","curation_rewards":46859,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"482209156709","last_update_time":1618715499},"governance_vote_expiration_ts":"2022-10-06T20:17:36","hbd_balance":{"amount":"392427","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-11T00:04:48","hbd_seconds":"240895413627","hbd_seconds_last_update":"2021-04-18T03:11:39","id":190905,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-01-23T03:59:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-18T02:33:36","last_post_edit":"2021-04-18T02:33:36","last_root_post":"2021-04-18T02:33:36","last_vote_time":"2021-04-18T02:44:06","lifetime_vote_count":0,"memo_key":"STM5Mr3gKnYv71rTXT4bdEc9DGe1QaP28NidgeQs2Cpn5CTbdeYYi","mined":false,"name":"andrewmarkmusic","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6VH9nw2edSYjVfy4VYcTm9HgqziBJV2UE3kK9unDS2jEa7Qskv",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3790,"post_voting_power":{"amount":"1928836626840","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8AbfPjbzuedmKRUMwqCm6AXVask8H8BPb98nFdN6YvXAYXHDCr",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":4368649,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"2183001094","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"1637","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5554081763","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2937","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2020-02-17T07:01:36","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2020-02-17T07:01:36","savings_withdraw_requests":0,"to_withdraw":"3600305407537","vesting_shares":{"amount":"1926653625746","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1860021934227","last_update_time":1618715499},"withdraw_routes":0,"withdrawn":"3600305407537","witnesses_voted_for":9},{"active":{"account_auths":[],"key_auths":[["STM7gsabFDv8LMuhjhPkZbbwugeRAPP7tUVjBSG2A1P6RyESwPMF8",1]],"weight_threshold":1},"balance":{"amount":"5038449","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-12-06T07:45:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1607240727},"governance_vote_expiration_ts":"2022-07-10T20:34:18","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1422761,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5JB9tWyavFdUaeGH1ZJTa4GweNbSsWvNZcYJq2v6EVzqNDX7rE","mined":false,"name":"andrianaallard","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6N8kbXxAgd4FwyRUJejjCwhA7puTn7GrJTgtzFEx5tHF9MU2No",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5fNXimVSAra7onQ5ffmsdNvryqZxPGwhBm6tK6tZBP9gRpx6EP",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"tipu","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1607240727},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM8M2PXTbgyD6cxyDmUzYatboGbJPJ8iqFjUbJ9D3XTNMqc1zchH",1]],"weight_threshold":1},"balance":{"amount":"2743001","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-04-02T15:04:21","curation_rewards":429906,"delayed_votes":[],"delegated_vesting_shares":{"amount":"384504110806","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1195788271418","last_update_time":1619020497},"governance_vote_expiration_ts":"2022-09-07T00:28:21","hbd_balance":{"amount":"538159","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-23T19:10:30","hbd_seconds":"1272004864320","hbd_seconds_last_update":"2021-04-21T15:54:57","id":143569,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-10T13:28:36","last_owner_update":"2017-08-30T11:59:51","last_post":"2021-04-21T09:38:21","last_post_edit":"2021-04-21T09:38:21","last_root_post":"2021-04-21T09:34:45","last_vote_time":"2021-04-21T09:35:15","lifetime_vote_count":0,"memo_key":"STM64JMxo1fDwrqr4h4bkRJX6MG3AF67r796ZNxnm4LYYZcfbnb4C","mined":false,"name":"andrianna","next_vesting_withdrawal":"2021-04-26T09:26:51","owner":{"account_auths":[],"key_auths":[["STM79Fg5vKhFmbXMQgrZ6wsTQR6WE9BR2HWCDE99BsaDbZLtkpcWm",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":16531,"post_voting_power":{"amount":"5046622615537","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dtube.app",1],["elegance.app",1],["leofinance",1],["ntopaz-artisteem",1],["peakd.app",1],["steemauto",1]],"key_auths":[["STM8S1Z3fZ41jYyJuLgvVy8AsWWwdTnqvVyBqJH3AUH92hqREsJ7N",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":39764591,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"313843451","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"166","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3425103888200","vesting_shares":{"amount":"5431126726343","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"263469529862","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3731150222371","last_update_time":1619020497},"withdraw_routes":0,"withdrawn":"2898164828482","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM6dGkr6vYY9hPDNToLRBYWt7ienRTbswwnH5je5rMkyGJbSEcAW",1]],"weight_threshold":1},"balance":{"amount":"2041190","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-17T03:44:15","curation_rewards":234376,"delayed_votes":[],"delegated_vesting_shares":{"amount":"122633974279","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1032671583692","last_update_time":1613293851},"governance_vote_expiration_ts":"2022-11-22T11:49:39","hbd_balance":{"amount":"262624","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-06-02T05:27:57","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-02T05:27:57","id":201863,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-09-04T03:08:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-02-14T09:10:00","last_post_edit":"2021-02-14T09:10:00","last_root_post":"2020-05-03T23:05:06","last_vote_time":"2021-02-14T09:10:51","lifetime_vote_count":0,"memo_key":"STM7i1emn5yEDQKdcXHbPLGGUMTXNb6ZmrErcEH3gQ15wLZUt5frj","mined":false,"name":"andyluy","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7ukRChZVxyf98jakEKJigMTUDTZ9iTBMZy3eDgqgKnM6szTExN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":6788,"post_voting_power":{"amount":"4130686334771","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["busy.app",1],["dlive.app",1],["dmania.app",1],["dtube.app",1],["minnowbooster",1],["smoke-busy",1],["steem-bounty-app",1],["steem-plus-app",1],["streemian",1],["utopian.app",1]],"key_auths":[["STM7jHNW1hcaosK5Pmi2GgHdbAj1FQHYrm1yuXEqkYVqWuWyRnAwm",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":10022486,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"5","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"47511383","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"25","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"6660720530346","vesting_shares":{"amount":"4253320309050","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4048072608075","last_update_time":1613293851},"withdraw_routes":0,"withdrawn":"6660720530346","witnesses_voted_for":6},{"active":{"account_auths":[],"key_auths":[["STM84MbejTT43KBx81SW9faQ1461LS4odHQz9TLW1EAdZ4UmDEsXF",1]],"weight_threshold":1},"balance":{"amount":"23927196","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-06T22:06:48","curation_rewards":2060007,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"201488274114","last_update_time":1619028306},"governance_vote_expiration_ts":"2022-10-08T22:58:30","hbd_balance":{"amount":"628","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-20T02:05:18","hbd_seconds":"0","hbd_seconds_last_update":"2021-03-20T02:05:18","id":355973,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-11-28T08:20:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-11-06T13:19:48","last_post_edit":"2020-11-06T13:19:48","last_root_post":"2020-01-19T03:01:30","last_vote_time":"2021-04-21T18:05:06","lifetime_vote_count":0,"memo_key":"STM5wbst8Sd4Svq7VoKVTzqzHZa8aJKLdVKBHXYg8psUsWHyqNLVp","mined":false,"name":"andywong31","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5aXvhHXMXvUtStnPZ6zJkaevBuZ5UFVte4YSbwhGo2ASMLmMDv",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1931,"post_voting_power":{"amount":"805953096458","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["partiko-steemcon",1],["peakmonsters.app",1],["steemauto",1],["steemhunt.com",1],["steempeak.app",1],["streemian",1],["tasteem.app",1]],"key_auths":[["STM6B6WX1ZnXxbKaDQaYy8Fp6NDwmZSqvkTfEf9Q8a58txG8j21Zt",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":304975,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1508160702","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"797","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"575471349629","vesting_shares":{"amount":"805953096458","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"789834034528","last_update_time":1619028306},"withdraw_routes":0,"withdrawn":"575471349629","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM8jeUnwnURK7DdHgoEjfnMRxZDehtwxfjZzfKfpBoP9t5bAqNzA",1]],"weight_threshold":1},"balance":{"amount":"1989972","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-08T10:29:42","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":257655268,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":358209,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-02-01T09:59:48","lifetime_vote_count":0,"memo_key":"STM68S4ugnCL4E2QWHX9LT3mZtkiHFCxsXkG4akS4B43GntHhpuGY","mined":false,"name":"ange668","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7Gu8rG4pyceCXzHXrhAAxCXSKCcxZMVpTU2WPGWjYvZSC6g2pb",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1030621072","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8fx2NBiGC6MFjHPXARozXie2MQJxg11SB9EUbhYFpbEDEbfEHt",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1030621072","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1030621072,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Xv654YCw91uz8z5L1Y6zrMWveaEneSBZJmGdCWNDyFHLTSeeT",1]],"weight_threshold":1},"balance":{"amount":"1836369","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-27T12:10:00","curation_rewards":109,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1509106200},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":427015,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-12-07T19:32:42","last_post_edit":"2017-12-07T19:32:42","last_root_post":"2017-12-07T19:32:42","last_vote_time":"2017-12-07T08:04:06","lifetime_vote_count":0,"memo_key":"STM528Ngky4MJt5sHLFNwUQC5DdxcEWv629QrCC3FkLyPMXx9YqjX","mined":false,"name":"anhaz","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5Gd7EWMczkJSkye4pY7V4Azgs3de2ag6dwHd3XDnfsL4UTGD99",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"10258189741","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6Vj4aL8931ZG5zxqNZSrSaP4xnuXNWa1iYCUGAnzELMpMrmfBz",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"223566260","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"109","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5418070762894","vesting_shares":{"amount":"10258189741","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9414,"last_update_time":1512633846},"withdraw_routes":0,"withdrawn":"5418070762894","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Yy3oDzWPEJxoovwufVHivrTkrPDzLTZGqPBwPGbAnfVP64mF8",1]],"weight_threshold":1},"balance":{"amount":"2900001","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2021-04-20T08:47:06","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1618908426},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1456417,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7nPe6t4DoxEUs77sT2V6FHsQ7RVpvc58xqP161zzpmmcc2hFfN","mined":false,"name":"anhkin","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5MJ7chjNJAQrMXhThKFKkefSD8oFAc9kWWLxWsMfKTc67rj8rz",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM68SM9F7V8ik9cRnYpWmF4Aj7yFy3Ax8FAMyRLWqBLkWVH2LsNC",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"tipu","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1618908426},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7SwBquatoWHXdZePoktt3KEyT7zBMRJeALeYtyrXkm59HXeStw",1]],"weight_threshold":1},"balance":{"amount":"1258797","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-17T13:46:33","curation_rewards":45999,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"130131435082","last_update_time":1600541748},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"30461","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-08-31T18:45:45","hbd_seconds":"85678977630","hbd_seconds_last_update":"2020-09-21T06:25:09","id":264705,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-05-09T10:11:57","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-09-11T13:42:51","last_post_edit":"2020-09-11T13:42:51","last_root_post":"2020-09-11T13:42:51","last_vote_time":"2020-09-01T14:40:18","lifetime_vote_count":0,"memo_key":"STM8PtYC4BDznRnWzzYvwHTe8eXfP3c4Z8xN3NRZEh9WzSt3hVrLt","mined":false,"name":"anikearn","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6GGqbWJjX1zEe4G7vPsJFrmX6yvVBiweoDmswwSvJ2oXCp5YMg",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":7225,"post_voting_power":{"amount":"520525740333","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["busy.app",1],["dlike.app",1],["dlive.app",1],["dpoll.xyz",1],["dreply",1],["drugwars.app",1],["dtube.app",1],["esteemapp",1],["ntopaz-artisteem",1],["partiko-steemcon",1],["peakd.app",1],["share2steem.app",1],["smartsteem",1],["steemdunk",1],["steemhunt.com",1],["tasteem.app",1]],"key_auths":[["STM63CjzUVofX1FwKsjq2DCeCrocnWrgv92bLGiXa5gfwnhVMN2Cr",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1855643,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"1952069567537","vesting_shares":{"amount":"520525740333","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"520525740333","last_update_time":1600541748},"withdraw_routes":0,"withdrawn":"1952069567537","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7RemKyHuNmi6bq9w7194pXyJTxBuZQd1gaoGUxWRSztg5Ckzmz",1]],"weight_threshold":1},"balance":{"amount":"4740350","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-16T11:18:00","curation_rewards":481,"delayed_votes":[],"delegated_vesting_shares":{"amount":"1961407954508","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"10200213249426","last_update_time":1576860240},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2377","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-09-24T06:53:06","hbd_seconds":"4711220292","hbd_seconds_last_update":"2019-10-17T07:49:06","id":765589,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-10-29T10:38:15","last_owner_update":"2018-02-16T13:05:00","last_post":"2018-07-02T04:47:30","last_post_edit":"2018-07-02T04:47:30","last_root_post":"2018-07-02T04:47:30","last_vote_time":"2019-05-02T07:29:15","lifetime_vote_count":0,"memo_key":"STM88idvcBcgMjvgMwWRsWPFf79SqPyKC5Z8poD2JHBaXiqLEUyrF","mined":false,"name":"animesocialclub","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6dM3Q1v3aN1ViTU7mYienthNHZhf1XgNfXZosdh4Hfx5zUpsm7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":53,"post_voting_power":{"amount":"589181992747","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["dlive.app",1],["minnowbooster",1]],"key_auths":[["STM5ffFBLyEDUvQe3wSeobg7e5UvTPznUz64CCBThaDy9UsAVCpYM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":720,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"40211671004958","vesting_shares":{"amount":"2550589947255","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"40800852997705","last_update_time":1576860240},"withdraw_routes":0,"withdrawn":"40211671004958","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8cJe2M2DkJXmEz8ZGGdD1mPHVkFwPdPZZ9cMzykDvaunQ4iSH5",1]],"weight_threshold":1},"balance":{"amount":"8440672","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-14T07:46:12","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1489477572},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":138185,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM59k6CtnMxW9FhqPBTDZPmiEq4ZUUbS3Fnoz7q6dS9oCFENPB2L","mined":false,"name":"ankit2403","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7orP5caqtVqKamewC5UNRVnNV8Jt6yLcKa4Z3o7g6sdma4K87C",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5iiPEFAewiUAuNbXc1TVKVcJ5c4WUEHvQWLxfrhENz8ZixJto4",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"17467044349861","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1489477572},"withdraw_routes":0,"withdrawn":"17467044349861","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5LuzyxY2TLHDTeYwXx96JhHXjHqcEgGixWJCQiFdziwKN9HTYw",1]],"weight_threshold":1},"balance":{"amount":"9703945","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-01-15T02:47:36","curation_rewards":1693656,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"8697103902772","last_update_time":1619038800},"governance_vote_expiration_ts":"2022-08-18T15:43:39","hbd_balance":{"amount":"6208","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-09T02:59:57","hbd_seconds":"6838751424","hbd_seconds_last_update":"2021-04-21T21:00:00","id":1198432,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-09-28T21:57:03","last_owner_update":"2019-01-15T03:58:21","last_post":"2019-10-21T16:08:06","last_post_edit":"2019-10-21T16:08:06","last_root_post":"2019-10-21T16:08:06","last_vote_time":"2021-04-21T20:08:27","lifetime_vote_count":0,"memo_key":"STM75dn3XZfjJXa64bPyfw616QP9u8ovZfDC8shDumVmyefudkjRm","mined":false,"name":"ano123","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7t19EDkCBhZPDaL5a12iWZ1gdMc4XZPdbVXo1863X6NqZT7EnD",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":73,"post_voting_power":{"amount":"34788415611092","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["share2steem.app",1],["smartsteem",1],["steemauto",1],["steemknights",1]],"key_auths":[["STM8h6LzQkhrynwQSrALjJABdUu7Vep2rXVDgUm9RmoyUKuWV5iXe",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":981226,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"34788415611092","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"34582758947852","last_update_time":1619038800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM6JEcmZ36SXRBmwTCXm3k4R9EAQoYoThQFnZJ7hL365qHWBJGFt",1]],"weight_threshold":1},"balance":{"amount":"1552124","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-25T21:40:36","curation_rewards":6118,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1461620436},"governance_vote_expiration_ts":"2022-08-20T18:06:36","hbd_balance":{"amount":"21","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":5600,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2016-05-26T17:17:12","last_owner_update":"2016-05-26T17:17:12","last_post":"2016-07-23T06:03:30","last_post_edit":"2016-07-23T06:03:30","last_root_post":"2016-07-23T06:03:30","last_vote_time":"2018-04-29T08:08:15","lifetime_vote_count":0,"memo_key":"STM6JEcmZ36SXRBmwTCXm3k4R9EAQoYoThQFnZJ7hL365qHWBJGFt","mined":true,"name":"anon","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6JEcmZ36SXRBmwTCXm3k4R9EAQoYoThQFnZJ7hL365qHWBJGFt",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":83,"post_voting_power":{"amount":"10050072988","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8EQYBpMtuQojPCHn7ddvhVaFtR24ggcXzUtHkhq1mKVLXFqVMJ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2274283,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"175113716","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"86","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"9127120235778","vesting_shares":{"amount":"10050072988","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":8005,"last_update_time":1524989295},"withdraw_routes":0,"withdrawn":"9127120235778","witnesses_voted_for":8},{"active":{"account_auths":[],"key_auths":[["STM7ExS2v53VXHzZnrfMiL5bMRsCJLa4C22mNGfhPcLLjhLkZ7pH8",1]],"weight_threshold":1},"balance":{"amount":"2373070","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-20T13:00:39","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1466427639},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"16","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":12985,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-06-20T13:16:57","last_post_edit":"2016-06-20T13:16:57","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2016-06-20T13:06:30","lifetime_vote_count":0,"memo_key":"STM5ALdMo548VT8NLBY3BjFzDAENC4ppjRrx8eCY2Q4Pr93TpygJm","mined":false,"name":"anonpic","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7UzqWrAAboaSeBD4kfphDu5LEeyAYiw2mqaJccnRC1HWCKijC2",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"14314169790059","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5Pm1n8BUuMHGDMx3kPoQyKoGva3ngDtUS2i6v6M7rhqjiT6tMR",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"14314169790059","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9901,"last_update_time":1466427990},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7sdB56Cm3696txy5axnh4bwn6Nh8aFLaWJrPCsTc4ZybBDfh4M",1]],"weight_threshold":1},"balance":{"amount":"160000000","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-06T12:42:33","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1459946553},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"6","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":1268,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2016-09-25T22:50:39","lifetime_vote_count":0,"memo_key":"STM7sdB56Cm3696txy5axnh4bwn6Nh8aFLaWJrPCsTc4ZybBDfh4M","mined":true,"name":"another","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7sdB56Cm3696txy5axnh4bwn6Nh8aFLaWJrPCsTc4ZybBDfh4M",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"57310000000","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7sdB56Cm3696txy5axnh4bwn6Nh8aFLaWJrPCsTc4ZybBDfh4M",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"414009397000000","vesting_shares":{"amount":"57310000000","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9999,"last_update_time":1474843839},"withdraw_routes":0,"withdrawn":"414009397000000","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7EmXyWjTB2HeRLpwNtbAsGsuYLhhw9vnfmpb7Sgfi8qi4wDcWp",1]],"weight_threshold":1},"balance":{"amount":"53285057","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-07-28T15:23:24","curation_rewards":14491,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"35104843441860","last_update_time":1613385264},"governance_vote_expiration_ts":"2022-10-05T06:26:57","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-13T12:35:54","hbd_seconds":"4811663397","hbd_seconds_last_update":"2020-03-11T10:22:51","id":1093121,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-10T10:28:39","last_owner_update":"2020-05-28T06:15:09","last_post":"2020-02-07T18:24:24","last_post_edit":"2020-02-07T18:24:24","last_root_post":"2019-07-21T05:28:15","last_vote_time":"2019-09-14T00:14:33","lifetime_vote_count":0,"memo_key":"STM5YwTDjtdeKTkPcNV18Coq1CbuhZYeBTTPsfbEemaWqvPVxXMLn","mined":false,"name":"anothersteemi","next_vesting_withdrawal":"2021-04-27T08:23:30","owner":{"account_auths":[],"key_auths":[["STM684swSkCERq6EjcPQGQra74gJdSvKczuAM3gHCu1Ha16TDd4im",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":149,"post_voting_power":{"amount":"43240026624822","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1],["share2steem.app",1],["steemhunt.com",1]],"key_auths":[["STM8gvVXTh9Encx9nMDcUUY1etX9HNEfK1sgvHCiavJaKHfsJn8E5",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":89552,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"140370168094888","vesting_shares":{"amount":"43240026624822","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"10797705238069","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"140419373767443","last_update_time":1613385264},"withdraw_routes":0,"withdrawn":"97179347142621","witnesses_voted_for":14},{"active":{"account_auths":[],"key_auths":[["STM6NqLBzMXg2bYivTZuyZy8wdAmDTdMNdsgt3Yk3LgNKuJcraG2T",1]],"weight_threshold":1},"balance":{"amount":"2149479","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-02-19T02:36:06","curation_rewards":230431,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"631601225053","last_update_time":1584710892},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-07-17T15:53:06","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-19T15:01:33","id":1222675,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-02-27T11:56:42","last_owner_update":"2019-02-19T02:51:18","last_post":"2019-03-05T21:09:39","last_post_edit":"2019-03-05T21:09:39","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2020-03-20T13:28:12","lifetime_vote_count":0,"memo_key":"STM5XhBwiNFPyvxHxjbV9szBoRDeZdkoGfpJWgwXNKEU55d94ozem","mined":false,"name":"anti-fraud","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7AEPdMzgBXKNAbYwbqR6doba6zz8TL26XykK1yamKccruf1rYk",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"122517106133","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["partiko-steemcon",1]],"key_auths":[["STM7RgXvzZ5iMB3LqmoyVou1kGW2ft9HNPp8kreSjjG5EDtchA8tz",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5613856817","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2867","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"7812635330780","vesting_shares":{"amount":"122517106133","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1683366570611","last_update_time":1584710892},"withdraw_routes":0,"withdrawn":"7812635330780","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8is6hU12twpkxmkr3hjeZcwYntcwoTuMz9QCcdn4mwhHgGP3xr",1]],"weight_threshold":1},"balance":{"amount":"1420383","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-13T04:34:27","curation_rewards":11731,"delayed_votes":[],"delegated_vesting_shares":{"amount":"393487300749","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"745887614549","last_update_time":1598114283},"governance_vote_expiration_ts":"2022-10-14T15:20:33","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-08-22T16:38:03","hbd_seconds":"189360","hbd_seconds_last_update":"2020-08-22T16:39:03","id":187931,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-31T01:32:45","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-05-16T03:36:57","last_post_edit":"2020-05-16T03:36:57","last_root_post":"2020-05-16T03:36:57","last_vote_time":"2020-03-31T01:41:57","lifetime_vote_count":0,"memo_key":"STM7e9odNLoSvAwmQp5CoouNsyssrWfk8f8jTFSS2GF1v7kDErj8e","mined":false,"name":"antic","next_vesting_withdrawal":"2021-04-24T01:44:06","owner":{"account_auths":[],"key_auths":[["STM7zbLUKxPNnue9woRFLLMYvT5EEz2MQmeHfiCrPNByHtsJhNVsP",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":333,"post_voting_power":{"amount":"1951324828904","nai":"@@000000037","precision":6},"posting":{"account_auths":[["epicdice",1],["partiko-steemcon",1],["peakd.app",1]],"key_auths":[["STM7zmUGxcrhsP9ZFNb1cHzbvoXXs4y9kgYJkChiiBpUxhL81MipG",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":484661,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"improv","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2019-07-28T19:30:45","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-07-28T19:30:45","savings_withdraw_requests":0,"to_withdraw":"2236488863477","vesting_shares":{"amount":"2344812129653","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"172037604883","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2983550458202","last_update_time":1598114283},"withdraw_routes":0,"withdrawn":"1032225629298","witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM5NRHyEua8LqTxCvhPhjSNszu2uFzs4xnS8EBFTfT4PE3pvePUV",1]],"weight_threshold":1},"balance":{"amount":"5849207","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-11T22:03:36","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1460412216},"governance_vote_expiration_ts":"2022-11-21T07:57:33","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":1748,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5NRHyEua8LqTxCvhPhjSNszu2uFzs4xnS8EBFTfT4PE3pvePUV","mined":true,"name":"antiwar","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5NRHyEua8LqTxCvhPhjSNszu2uFzs4xnS8EBFTfT4PE3pvePUV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5NRHyEua8LqTxCvhPhjSNszu2uFzs4xnS8EBFTfT4PE3pvePUV",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"dele-puppy","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"12118032000000","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1460412216},"withdraw_routes":0,"withdrawn":"12118032000000","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8kbTqLaSxMhArD4nTdgRP4gim6ZyMDScvNF3ogtJ9gSKUhDymi",1]],"weight_threshold":1},"balance":{"amount":"2479577","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-21T17:57:48","curation_rewards":429,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1503338268},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-03-23T07:52:12","hbd_seconds":"0","hbd_seconds_last_update":"2018-03-23T07:52:12","id":325041,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-01-17T19:15:00","lifetime_vote_count":0,"memo_key":"STM7BGXpNjqhA4ScoHBftuwfgsaYqhLNwDfZdDAEwBogkNF8tgXvv","mined":false,"name":"anto.brajkovic","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5HQsPmCeNyZZqzC5CLV359YyB2PM594jTbWFYmKUmWKHPNzxdc",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"10148226131","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5DSMEqEcfV4eGbJYXc8JJMMvhqoJBTadfYRN9NngbcQDPhcMw8",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"73714229","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"36","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5018558131920","vesting_shares":{"amount":"10148226131","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1516216500},"withdraw_routes":0,"withdrawn":"5018558131920","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5eZAhU6NcvbbqAm52Qwyh4TwYfEQSCsUJ7E6fmwtVL8vJiJZy7",1]],"weight_threshold":1},"balance":{"amount":"1525436","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-03T02:31:42","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":51070366,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":800009,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-01-04T19:11:51","last_owner_update":"2020-01-04T19:11:51","last_post":"2018-03-03T02:49:24","last_post_edit":"2018-03-03T02:49:24","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-03-03T02:41:18","lifetime_vote_count":0,"memo_key":"STM6UavTptVhMFZMeBfo1z5REB2YAphgGc4rRAmJW23rmKjS57sRg","mined":false,"name":"antonyjimmy","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6A2KaH6ioBByV5kawWz7iTitBoWjnbSnr3VRaeMafuHfrmpM7m",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"204281464","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7JCutmgU9KPCpgopsrNMuQSdu9882FrWB1KGWfcPpaMXA8FQoV",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"204281464","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":204281464,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM84auHKpkw8Ntg3Hk1RctpCgCS5eucazw8vrWaJ7KBAsos7xBcM",1]],"weight_threshold":1},"balance":{"amount":"2202879","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-02-25T03:50:57","curation_rewards":454,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1487994657},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":134271,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-02-28T19:07:09","last_post_edit":"2018-02-28T19:07:09","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-02-28T18:56:03","lifetime_vote_count":0,"memo_key":"STM547DVJ3Fz71KKa8Bg7HvRfqRJYRnwDRsxXR7nv4B586HQcR6Td","mined":false,"name":"antropomorfosis","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7ro3bVXcj6XF1hwv2p5JkeQD1tiusQyb6Wn4Ux8C99b8ghReL6",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"10230238825","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7dFMWiGUYzBPhzG6kZ57oCbNm2pZ7KwNSfvjtnRxKganjGZRTU",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"457873419","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"224","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4494732094901","vesting_shares":{"amount":"10230238825","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1519844163},"withdraw_routes":0,"withdrawn":"4494732094901","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7yFmwPSKUP7FCV7Ut9Aev5cwfDzJZixcreS1U3ha36XG47ZpqT",1]],"weight_threshold":1},"balance":{"amount":"42272330","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-11T21:19:06","curation_rewards":14318091,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"16420229827927","last_update_time":1619038947},"governance_vote_expiration_ts":"2022-09-30T12:06:51","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-11-02T18:27:03","hbd_seconds":"60707238384","hbd_seconds_last_update":"2020-11-05T19:09:57","id":16942,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-09-09T20:39:12","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-09-14T19:06:45","last_post_edit":"2020-09-14T19:06:45","last_root_post":"2020-03-18T20:50:12","last_vote_time":"2020-10-14T03:15:15","lifetime_vote_count":0,"memo_key":"STM7PUoDGQeHaoyBMwzLoPfRinYfLdUifMzCESxHRj6JNYQ7vs5Xb","mined":false,"name":"anyx","next_vesting_withdrawal":"2021-04-23T00:02:36","owner":{"account_auths":[],"key_auths":[["STM5CjnpVtzDrK9av7yFQETnUe36rVkkaSX2WRce7C9X8yXmVSEUS",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":1444,"post_voting_power":{"amount":"71659946740166","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1]],"key_auths":[["STM5bicRFWhpxnwBymo2HHJv6mFLiaP6AwVVsFEnnVjVcqbvqzvFt",1],["STM8Jn23vNmBzVuDAgQeZzzR17LmruENmmZmv1ra53tbsBgYbJFwk",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":31192218,"proxied_vsf_votes":["8164320041","58985776256591","25638086327",0],"proxy":"","received_vesting_shares":{"amount":"1000000000000","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"77727356569940","vesting_shares":{"amount":"70659946740166","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"5979027428457","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"65680919311709","last_update_time":1619038947},"withdraw_routes":0,"withdrawn":"41853191999199","witnesses_voted_for":29},{"active":{"account_auths":[],"key_auths":[["STM4wiPUHDb6o7g1BGKnZQvLfwbPCfsoNA711jshw8EDUipYe5RRi",1]],"weight_threshold":1},"balance":{"amount":"4950074","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-04-07T16:12:15","curation_rewards":1647465,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"171607427067","last_update_time":1577637492},"governance_vote_expiration_ts":"2022-08-14T00:03:33","hbd_balance":{"amount":"4990","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-12-29T16:38:12","hbd_seconds":"465248064","hbd_seconds_last_update":"2019-12-29T16:46:06","id":144893,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-08-18T09:26:51","last_owner_update":"2017-06-24T04:20:21","last_post":"2017-07-22T14:17:21","last_post_edit":"2017-07-22T14:17:21","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-06-28T18:50:54","lifetime_vote_count":0,"memo_key":"STM6BrVHi7Qyz5k5rhKBzBqKbcCJmVFGWj7cuj2bSvpZkRM7qW5CH","mined":false,"name":"aomura","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7JQwPdH8jPWnp8URNN23het6S8S69MXqDPzNj8rPGKzWd76p7B",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":6,"post_voting_power":{"amount":"686429708271","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM68fNL4KAtjn8ZdLFKh4Ecjk72Cw8kjwU8XKuTN6EbLV3ATDgAj",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":19,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"400","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-06-16T12:26:51","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-06-16T12:26:51","savings_withdraw_requests":0,"to_withdraw":"49018974981848","vesting_shares":{"amount":"686429708271","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"686429708271","last_update_time":1577637492},"withdraw_routes":0,"withdrawn":"49018974981848","witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM739GiAH6skkhNrHs1UnzQqSJLdmpVtT9iaVhsXpQC8rPeF9TwK",1]],"weight_threshold":1},"balance":{"amount":"8057474","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-02T06:23:06","curation_rewards":380790,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1462170186},"governance_vote_expiration_ts":"2022-08-12T02:58:57","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":7563,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2016-07-16T15:04:45","last_owner_update":"2016-07-16T15:04:45","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-06-16T12:26:39","lifetime_vote_count":0,"memo_key":"STM739GiAH6skkhNrHs1UnzQqSJLdmpVtT9iaVhsXpQC8rPeF9TwK","mined":true,"name":"apollo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM739GiAH6skkhNrHs1UnzQqSJLdmpVtT9iaVhsXpQC8rPeF9TwK",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"650317105235","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM739GiAH6skkhNrHs1UnzQqSJLdmpVtT9iaVhsXpQC8rPeF9TwK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"datasecuritynode","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"702066367","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"338","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"160198511536305","vesting_shares":{"amount":"650317105235","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9950,"last_update_time":1497615999},"withdraw_routes":0,"withdrawn":"160198511536305","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6sDVoNSd5uHMVDdxah5P4XfZWNBG9zmdHNQD8N3DyLSDmBsFC4",1]],"weight_threshold":1},"balance":{"amount":"3155510","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-20T12:46:03","curation_rewards":421858,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"3035272932049","last_update_time":1591874721},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"3435","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-06-11T11:25:21","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-11T11:25:21","id":208010,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-30T16:41:42","last_owner_update":"2018-03-31T19:32:15","last_post":"2020-06-02T14:26:54","last_post_edit":"2020-06-02T15:04:33","last_root_post":"2020-06-02T10:08:27","last_vote_time":"2020-06-02T14:29:15","lifetime_vote_count":0,"memo_key":"STM7n7bwWNiryQSHK3E84c3FxPpBUtbePzAVCm76khcKTGzFT3SnT","mined":false,"name":"appics","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8DEkycRtieGbvuTqcCPKFtJcwWFWiyNC9wRd3UrQS763uySivu",1]],"weight_threshold":1},"pending_claimed_accounts":103,"pending_transfers":0,"post_bandwidth":0,"post_count":917,"post_voting_power":{"amount":"60125636377","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM52WipDKWuPvLzd8qLYbL3aeEXKXe7CZnVa4KDcSDB93ZQxdXSX",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2040199,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"50488734180","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"6052796121214","vesting_shares":{"amount":"9636902197","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"12141091728197","last_update_time":1591874721},"withdraw_routes":0,"withdrawn":"6052796121214","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7etvJMdrKJUfMjtahFrPq8XSA1YERm8TtV8iaVUUL62JcDnenQ",1]],"weight_threshold":1},"balance":{"amount":"2187304","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-11-25T23:01:42","curation_rewards":92205,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"263029693337","last_update_time":1619038803},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2284","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-10T21:00:06","hbd_seconds":"936374643","hbd_seconds_last_update":"2021-04-21T21:00:03","id":1341351,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-05-06T01:48:03","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-21T11:11:48","last_post_edit":"2021-04-21T11:11:48","last_root_post":"2021-04-21T11:11:48","last_vote_time":"2021-04-21T20:13:12","lifetime_vote_count":0,"memo_key":"STM7YhYSgJ6frFeZHjVcBQ2TsmfyCGET18jw6TkzJP3BjSYhp5C7R","mined":false,"name":"arbitration","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM66E7yuUqDQrprm3X8C9M4RjiqW8FeJ522ZuUB8dyG8tvz6Rw4J",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":323,"post_voting_power":{"amount":"1052118773350","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1]],"key_auths":[["STM8YVMmNUY9EiRmCaLZu6hXwMyUmqJQC4kGJV5DKnfr3xbmwUsUc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3942594,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"jawnz","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2975410017210","vesting_shares":{"amount":"1052118773350","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1037923114046","last_update_time":1619038803},"withdraw_routes":0,"withdrawn":"2975410017210","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8SxaoQryZmn44pPCPb9vHtU5bq5oiyK5bj7bhRG7T4sCXBC9e9",1]],"weight_threshold":1},"balance":{"amount":"2309980","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-11T08:48:54","curation_rewards":6045,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":3702562599,"last_update_time":1614445230},"governance_vote_expiration_ts":"2022-09-19T01:38:42","hbd_balance":{"amount":"39","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-02-27T17:00:30","hbd_seconds":"0","hbd_seconds_last_update":"2021-02-27T17:00:30","id":598919,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-06-21T15:30:39","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-11-23T17:41:24","last_post_edit":"2020-11-23T17:41:24","last_root_post":"2020-11-23T17:41:24","last_vote_time":"2020-11-23T17:47:00","lifetime_vote_count":0,"memo_key":"STM5q2TRcwVKLrHeuB7mfuL9axFikRCv2Ao8m5QTSg4g8fKmfukd9","mined":false,"name":"archet","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6K9vrAKQS666u6QRkYXS8wWrHr71LSDEq8Pu2oXLNz27tUione",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":182,"post_voting_power":{"amount":"14810250401","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dlike.app",1],["dlive.app",1],["dmania.app",1],["smartsteem",1],["steefun.app",1],["steem-plus-app",1],["steem.app",1],["steemauto",1],["steemhunt.com",1],["threespeak",1]],"key_auths":[["STM6WxbyaQer5avLDkE8J96s6tfjPD2XyHeAsVkzAuLhf8Nv59BGo",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":155341,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"200855367607","vesting_shares":{"amount":"14810250401","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"14810250401","last_update_time":1614445230},"withdraw_routes":0,"withdrawn":"200855367607","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM8TYCKTrHawNvppL4fyJRrN9PSD3zGyNntL1Lmw2k5L6cDarrWF",1]],"weight_threshold":1},"balance":{"amount":"3818337","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-07-04T00:47:03","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1562201223},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1290474,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5V4moPdW4WLRhybpi26mAxAMpFccS371EUcERtjxUHeD8TWLjS","mined":false,"name":"archwel","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5oDXAm87FfCLRCWGUKBaKqKKpGBuftz123MPBvjrah2gTK8XMu",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8GzACdyk1EhVTJKKRQLboAtusPbYaNE7o3X3A6DAPHwK7M7cJt",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steemwallet.born","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1562201223},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5Hxc76YzsuuWT8KJqg5Hu7f8NMLkQQcJrdDzzoRLipnHhDgVvW",1]],"weight_threshold":1},"balance":{"amount":"1182519","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-11T11:57:03","curation_rewards":283192,"delayed_votes":[],"delegated_vesting_shares":{"amount":"4520000000000","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"704004901207","last_update_time":1618988163},"governance_vote_expiration_ts":"2022-10-08T07:47:39","hbd_balance":{"amount":"23","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-13T06:58:03","hbd_seconds":"15894840","hbd_seconds_last_update":"2021-04-21T06:56:03","id":16691,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-03-26T17:48:45","last_post_edit":"2021-03-26T17:48:45","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2021-04-20T20:54:00","lifetime_vote_count":0,"memo_key":"STM8Ef97ekDpR4bVshQ1GGBBZZjP2f1LR2RAo6adZFNGCRHwQ4FfS","mined":false,"name":"ardina","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7cHzqJt1qEfXuKZkRvXQeSoWSgiqiGjSps7xEwsm3VquenoYAi",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1733,"post_voting_power":{"amount":"2816019604832","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6z8hnPRA2KUyBRLCHLWYNzzbyXTc2kGAkqRnrk2TC1EcoPcc57",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":51275,"proxied_vsf_votes":[0,0,0,0],"proxy":"blocktrades","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"75625620","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"40","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-04-27T12:30:06","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-04-27T12:30:06","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"7336019604832","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2501791119214","last_update_time":1618988163},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5tKnKa9Uxztk25EL168fAvGot8uCpFUDYKn44poSkmNTKNP6f3",1]],"weight_threshold":1},"balance":{"amount":"8502979","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-01-02T01:28:12","curation_rewards":2,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1483320492},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:03","id":123736,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-09-12T12:51:51","lifetime_vote_count":0,"memo_key":"STM8eSENg4dhwfDog6TcZyVGd2oiCfsQjAaZEC2Z62PEjqTFgXw74","mined":false,"name":"arete","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8KZ7ipC9g1oQcePeeCE8BMJXCaMM7L5Mtb7Bf8qDaxW6PGtUiA",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"83510653608","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6AyLaTeKV5p7abmCwFYXRw7hk5fuYakE5ndUGg11Q9C7tgTMDg",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"83510653608","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1505220711},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6RraBu7nF1LngZYtUFeWN6Xw5QHmv595nD3fGgrTqyLkBbhQUC",1]],"weight_threshold":1},"balance":{"amount":"42774728","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-11T05:30:36","curation_rewards":5659493,"delayed_votes":[],"delegated_vesting_shares":{"amount":"857133095037469","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1460352636},"governance_vote_expiration_ts":"2022-09-07T19:59:15","hbd_balance":{"amount":"1260850","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-10-13T05:47:39","hbd_seconds":"0","hbd_seconds_last_update":"2018-10-13T05:47:39","id":1692,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2016-07-15T05:59:03","last_owner_update":"2016-04-18T20:00:18","last_post":"2017-07-20T23:05:12","last_post_edit":"2017-07-20T23:05:12","last_root_post":"2017-06-23T21:45:12","last_vote_time":"2017-12-29T07:45:30","lifetime_vote_count":0,"memo_key":"STM7cjCgFa9NqAZPG6vPhAHSB5FG6Lnmwt5NJQNiskkSBwyG6ND3F","mined":true,"name":"arhag","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5HnmZoQGFHyuS9oE9hNn7JicLHrdB529Gsn1YuAHbbSRJN1uZs",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":309,"post_voting_power":{"amount":"748104733986062","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6HdLz5PtFe5B25ApD6GehSVJYFsdTXti2gEBFKUYFDnLc2NfJH",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":52850586,"proxied_vsf_votes":["10316044789",0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-06-26T16:19:54","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-06-26T16:19:54","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1605237829023531","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9141,"last_update_time":1514533530},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM4tYj6ufipiXcPNz9of3J7uq9aBbrdGVSuH8hPuXunVZJsGcEkb",1]],"weight_threshold":1},"balance":{"amount":"1341607","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-13T03:01:57","curation_rewards":13796,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1497322917},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-01-12T04:11:06","hbd_seconds":"0","hbd_seconds_last_update":"2019-01-12T04:11:06","id":187749,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-04-11T18:20:06","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-04-11T18:27:54","last_post_edit":"2018-04-11T18:27:54","last_root_post":"2018-04-11T18:27:54","last_vote_time":"2018-10-13T19:44:42","lifetime_vote_count":0,"memo_key":"STM6RpeM31VVFKBpY3dmn1hwXuNt43N8LGa2pTyZ6FDY7tJEEkS7h","mined":false,"name":"arismikelatos","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6mLnUN9oNSH3TNUBcQveyPtZX44gDRx7u437AyVBrT4P8ms1ke",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":211,"post_voting_power":{"amount":"10045906359","nai":"@@000000037","precision":6},"posting":{"account_auths":[["esteemapp",1]],"key_auths":[["STM6NqdkQ7EJeqGPg8JDSqVtP8wz7PjwbRhgMGCgSbjYmY3w6JKGj",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":32765,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2910757361087","vesting_shares":{"amount":"10045906359","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2920797425839","last_update_time":1539459882},"withdraw_routes":0,"withdrawn":"2910757361087","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM54ian6Eq9JfRBZR1DDJXSkLe3QgkoLvs9jYgriCwXdR5gLqzgd",1]],"weight_threshold":1},"balance":{"amount":"1583442","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-04-21T12:26:33","curation_rewards":2395017,"delayed_votes":[],"delegated_vesting_shares":{"amount":"23045489491505","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"8356854245436","last_update_time":1619038509},"governance_vote_expiration_ts":"2022-07-25T07:20:18","hbd_balance":{"amount":"499877","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-01T22:55:33","hbd_seconds":"613111352250","hbd_seconds_last_update":"2021-04-21T20:46:36","id":954968,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-11-22T00:39:54","last_owner_update":"2019-07-12T15:11:03","last_post":"2021-04-21T14:08:12","last_post_edit":"2021-04-21T14:08:12","last_root_post":"2021-04-21T13:01:21","last_vote_time":"2021-04-21T20:55:09","lifetime_vote_count":0,"memo_key":"STM4v8RoJdUYvw92whK1WxoVopx1YvnzJB9XJ4p9FbCkK31tKqAYv","mined":false,"name":"armandosodano","next_vesting_withdrawal":"2021-04-27T18:19:00","owner":{"account_auths":[],"key_auths":[["STM7e571J7THAGQWgJGQJDcnE65tj5TaKTxmwTdygAUzv2mw6YFRw",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":5426,"post_voting_power":{"amount":"36385361938431","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["busy.app",1],["dpoll.xyz",1],["ginovotino",1],["hive.blog",1],["peakd.app",1],["steemauto",1],["steempeak.app",1]],"key_auths":[["STM8agyrg8CPswcSEk2PnUNSeDivxrRRX8HpngW3a9yqqFrk7dtbC",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":24133878,"proxied_vsf_votes":[0,0,0,0],"proxy":"discovery-it","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"phage93","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"119108490","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"63","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2021-03-18T13:07:18","savings_hbd_seconds":"638735616960","savings_hbd_seconds_last_update":"2021-04-05T17:44:06","savings_withdraw_requests":0,"to_withdraw":"38453284436886","vesting_shares":{"amount":"59430851429936","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"2957944956684","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"28704956938030","last_update_time":1619038509},"withdraw_routes":0,"withdrawn":"11831779826736","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6pzYVJLg11eJsGkjrKQJa74GE8zXbcqtiuvj8u7hdaxevZ4m6k",1]],"weight_threshold":1},"balance":{"amount":"7355696","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-21T07:16:21","curation_rewards":658465,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"3599858031635","last_update_time":1580665713},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"10817","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-23T19:00:03","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-23T19:00:03","id":272399,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-06-22T16:40:45","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-06-27T13:23:51","last_post_edit":"2018-06-27T13:23:51","last_root_post":"2018-06-07T03:34:45","last_vote_time":"2020-02-02T17:48:33","lifetime_vote_count":0,"memo_key":"STM7XFHTLDvmfrR39WYW2vFeCZhTF5q7uGFE95Ab6oDBwDWZ5rFGy","mined":false,"name":"arshikhan","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5EAuhhND21qciqM4mmo6bY8iHYAcFJ8N42i8WPJUUiW3Gz3Fiw",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1714,"post_voting_power":{"amount":"9819388469","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dmania.app",1],["smartsteem",1]],"key_auths":[["STM5PU5ujUCdQqtvSxx5TNEJdhodnNjBALSWhjN3BojAEr1oaXcZS",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3258337,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"3360438439","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1712","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"14389612738072","vesting_shares":{"amount":"9819388469","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"10425911593139","last_update_time":1580665713},"withdraw_routes":0,"withdrawn":"14389612738072","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8WrhE6L2xwWZG5BbSHhLDGJBNLquEEJtRcMzSUHDDV2Wea5L43",1]],"weight_threshold":1},"balance":{"amount":"10446343","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-08-22T21:14:30","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1598130870},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1405654,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-27T22:33:12","last_owner_update":"2020-08-27T22:33:12","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8HkAhjC7Vqrp69c3EiRVbkM1owL6ztkJeXc7BBqbKLLMsRCXKb","mined":false,"name":"artsyproxy","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5EeP5u5m2W8UMMP2ZbH7w2RT2RKg4ZGrgtA9tyUXsi1QyLoKYR",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM54tHD3upJwccicpHtwU5Q9KkhMmTW7KxefHMt79n7mi6WY1X7M",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steemed-proxy","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1598130870},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM68BNiQmrEZRhv5LbWBZFcPV1xkjRTLcm6UVGK5jjMGsakRs4QW",1]],"weight_threshold":1},"balance":{"amount":"2005190","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-09-11T07:39:42","curation_rewards":2916,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"103069235036","last_update_time":1619033766},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"7314","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-13T18:37:57","hbd_seconds":"3751684338","hbd_seconds_last_update":"2021-04-21T05:44:03","id":1410278,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-02T20:02:42","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-21T00:13:09","last_post_edit":"2021-04-21T00:13:09","last_root_post":"2021-04-20T00:07:12","last_vote_time":"2021-04-21T19:36:06","lifetime_vote_count":0,"memo_key":"STM5swjdoPDYitJn4ou9WcyeX4m7X3bhZU5LCPtpAL4EdbFYzj9bi","mined":false,"name":"artxmike","next_vesting_withdrawal":"2021-04-23T01:19:54","owner":{"account_auths":[],"key_auths":[["STM82gdVjFymrGXB2FgVgQkEZ1b59vn8hhFugr7L4Jk1vC6Ta4pS8",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":217,"post_voting_power":{"amount":"426888375008","nai":"@@000000037","precision":6},"posting":{"account_auths":[["nerday.app",1],["peakd.app",1]],"key_auths":[["STM6dQf4yr1Q3sV4HRXxdk4gR8z6MgmyW8UWGuHAH4X5VgkbLJJdE",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":542956,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"bdvoter","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"69954304","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"37","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"189948653194","vesting_shares":{"amount":"426888375008","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"14611434862","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"174887340991","last_update_time":1619033766},"withdraw_routes":0,"withdrawn":"102280044034","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM72tNdzXWe2J9A3LQSBH3g3MTq2HdEpuLefe41mcaRJZuXx9YGZ",1]],"weight_threshold":1},"balance":{"amount":"1169461","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-30T00:12:06","curation_rewards":1772,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1498781526},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-08-19T05:51:45","hbd_seconds":"0","hbd_seconds_last_update":"2018-08-19T05:51:45","id":234221,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-07-08T02:11:18","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-04-17T08:33:18","last_post_edit":"2018-04-17T08:34:06","last_root_post":"2017-08-07T08:06:45","last_vote_time":"2018-05-15T03:14:30","lifetime_vote_count":0,"memo_key":"STM62DPZpTHN86aRJVRFmR5Zedt4Rh2dLwK2sNqPeZR277ZBj97Dp","mined":false,"name":"aryacryptoguy","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8PYwo127MmYncAiNG7FM546eR3vgRvMqdVLyG3zDutXkJD6fRx",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":177,"post_voting_power":{"amount":"29642476498","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM4w3C9hykPdUpM7zytk48hevKzFVs4JwFph4sZ3NH9JycLP3TRf",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":27605,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"48899900","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"24","nai":"@@000000021","precision":3},"savings_balance":{"amount":"12943921","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"19192","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-08-19T05:51:45","savings_withdraw_requests":0,"to_withdraw":"3277140457271","vesting_shares":{"amount":"29642476498","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9604,"last_update_time":1526354070},"withdraw_routes":0,"withdrawn":"3277140457271","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6SenPswLTtjTsXYGaDRPKFZdi6zNfYGXsHtLyqPvsE3Hu8YTXU",1]],"weight_threshold":1},"balance":{"amount":"13116857","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-21T00:49:12","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":258328527,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"4","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-08-04T02:11:24","hbd_seconds":"0","hbd_seconds_last_update":"2018-08-04T02:11:24","id":271596,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-01-16T22:21:12","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-07-26T11:47:27","lifetime_vote_count":0,"memo_key":"STM5awE2tHjNU9QzWUei59q4TTWjh744gzGFEUXeNUkR3d46372CS","mined":false,"name":"asaddique","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6aqEUaVf8F6agcCtCehaD7SnPYkPJwCzW6c7uCki4cwon1MuDS",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1033314107","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7bUqftiRUHGaoUMMnV3NQ2WsGERyuPEPbPLnNhn6DGdaVgsZhe",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1033314107","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1033314107,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5xHKojCmPbhEgbTX8XUaSiRVMxCQSnCnhMJ8XD3nM19qrUu3db",1]],"weight_threshold":1},"balance":{"amount":"5712841","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2021-03-09T23:14:39","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"282168493016","last_update_time":1615340271},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1441962,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6DrEYzioyj6QxgFa5U74UzgpNhWzUDa8x8iGrYArkPMDiiS2pM","mined":false,"name":"asadra","next_vesting_withdrawal":"2021-04-23T14:58:54","owner":{"account_auths":[],"key_auths":[["STM8N2Vj2fSWym92YoLvrX3hKVLK86kJJ9fnhczbR5bzv8euGjjji",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"781389722056","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM4zUKDQAAygQUdxMWytggzvKwe4fJKWHj44anTpCqRLGK7HqtCT",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"tipu","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"1128673812520","vesting_shares":{"amount":"781389722056","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"86821062502","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1128673972064","last_update_time":1615340271},"withdraw_routes":0,"withdrawn":"347284250008","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6anuFKszACYg1mdW1cK3siMgjPkM44THZRdkLF5QBVtq57NCKc",1]],"weight_threshold":1},"balance":{"amount":"183135618","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-03-25T02:29:33","curation_rewards":3150,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1458872973},"governance_vote_expiration_ts":"2022-06-03T15:36:57","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2017-12-26T00:30:54","hbd_seconds":"0","hbd_seconds_last_update":"2017-12-26T00:30:54","id":176,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-03-15T07:01:06","lifetime_vote_count":0,"memo_key":"STM6anuFKszACYg1mdW1cK3siMgjPkM44THZRdkLF5QBVtq57NCKc","mined":true,"name":"ashleigh","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6anuFKszACYg1mdW1cK3siMgjPkM44THZRdkLF5QBVtq57NCKc",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"4130127229","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6anuFKszACYg1mdW1cK3siMgjPkM44THZRdkLF5QBVtq57NCKc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"blocktrades","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"162216084636330","vesting_shares":{"amount":"4130127229","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9950,"last_update_time":1489561266},"withdraw_routes":1,"withdrawn":"162216084636330","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5LFB7TA9pDB84EnL3TM9qWwQQJaBbUbQzXC71hhgjF5dErTo4B",1]],"weight_threshold":1},"balance":{"amount":"2104807","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-10T19:27:21","curation_rewards":1148325,"delayed_votes":[{"time":"2021-04-01T18:44:36","val":"2366923042183"}],"delegated_vesting_shares":{"amount":"9792101593330","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"8310113479185","last_update_time":1619038413},"governance_vote_expiration_ts":"2022-11-12T09:05:48","hbd_balance":{"amount":"27482","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-16T09:11:57","hbd_seconds":"9029885682","hbd_seconds_last_update":"2021-04-21T06:45:27","id":594210,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-21T22:34:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-21T20:52:24","last_post_edit":"2021-04-21T20:52:24","last_root_post":"2021-04-17T22:12:03","last_vote_time":"2021-04-21T20:53:33","lifetime_vote_count":0,"memo_key":"STM5v7ipcZQDjEkC9VBsz5BVqKgAYw9munAHRYuqqPQoPDfy81X8Z","mined":false,"name":"ashtv","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7o6ekF7JEfstLTbUUt5GqaH89AiNVTCuMcgk2YiUD5LyXF12zb",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3398,"post_voting_power":{"amount":"33240453916743","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["dlike.app",1],["dpoll.xyz",1],["ecency.app",1],["esteemapp",1],["oracle-d",1],["oracle-d.app",1],["partiko-steemcon",1],["steem-plus-app",1],["steemhunt.com",1],["threespeak",1]],"key_auths":[["STM7QS6QxLSVBuyhxtGuEVrC8aBMUMC2akCAAJcwPpwuNURr5P9RS",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5790478,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"radicalpears","reset_account":"null","reward_hbd_balance":{"amount":"75","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"4278509310","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2263","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"43032555510073","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"23829947209054","last_update_time":1619038413},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":27},{"active":{"account_auths":[],"key_auths":[["STM7LE8epW1L1w3hXorSGVJBsM6VXtj8RhpFBFRf41qaBuLA5S5q3",1]],"weight_threshold":1},"balance":{"amount":"1348512","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-27T19:14:15","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1511810055},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":464051,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6Q8mvwGD9rqS4MtdoCcH8q7i6dikm6DhwABbk2X5zBBLPiApc1","mined":false,"name":"asttaylormade","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM65td1g5do6HtuzcSXJsPk7txUvUozBt1PDVv2ZGLe9DqnJ2xJW",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"10189891778","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5TJkaNNWpfqELfzpMmzcN1X2ckH1gEfJfsBJcMxHKaaQdtDhja",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2740698569145","vesting_shares":{"amount":"10189891778","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1511810055},"withdraw_routes":0,"withdrawn":"2740698569145","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6a9DaPdLBPAFpv8qcs75m9PujECM3iLqVTWf3fQLcm2BmWVJjB",1]],"weight_threshold":1},"balance":{"amount":"2185323","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-19T16:59:48","curation_rewards":115120,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1519059588},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"635","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-06-09T04:46:12","hbd_seconds":"968309595","hbd_seconds_last_update":"2019-06-26T20:21:09","id":770257,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-09-14T22:18:42","last_owner_update":"2018-02-19T17:02:54","last_post":"2019-05-23T21:59:39","last_post_edit":"2019-05-23T21:59:39","last_root_post":"2019-05-17T14:19:48","last_vote_time":"2019-06-29T17:24:33","lifetime_vote_count":0,"memo_key":"STM7YkH9DrDZwFhk2NankbJNnvigzxeQh8ZTRTMgYNQxDTbJBdasb","mined":false,"name":"atlantica","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8gPjF1WyyBWJy6x6e41NdN2e3PiBtX77i8LXUg6Y3rrPXi1DpV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1338,"post_voting_power":{"amount":"18887980105","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5qNptiDPFV5VGWGU1wBzam8pVB3HXWvyMeXt3LY2KzpidKjHs5",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":44630,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"686146529","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"345","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4352930838464","vesting_shares":{"amount":"18887980105","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1947668239997","last_update_time":1561829073},"withdraw_routes":0,"withdrawn":"4352930838464","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8HSpwd494LUgAFDQ85db6iBpUehnX9CgY5oXWSJaY3qfMazZKa",1]],"weight_threshold":1},"balance":{"amount":"1488213","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-01T02:27:48","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":304888878,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"63124","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-01-26T22:42:15","hbd_seconds":"104919133536","hbd_seconds_last_update":"2020-02-23T19:38:18","id":778195,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-03-05T21:29:09","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-03-05T21:28:09","last_post_edit":"2019-03-05T21:28:09","last_root_post":"2019-03-05T21:28:09","last_vote_time":"2019-03-12T22:07:48","lifetime_vote_count":0,"memo_key":"STM6QD1hneuMFNTrHihngEWwBfGFWo5FzYTPAS2nFYeaL3wMdKVnB","mined":false,"name":"atmgo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7KeVYzdHwCb6hndt6PqJhm63NHWzjaYdx3LK8RtjE1tJDJzBzd",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":8,"post_voting_power":{"amount":"1219555512","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["busy.app",1]],"key_auths":[["STM5MW7jE4foZkRgrqRYpzpQVm6U8SoYJETxgoGe1CcZ8bCGzpJmT",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":193,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1219555512","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1219555512,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7TA1PBqaVPCcNrauF3xDTbXMQYQuLjFiN3mt7B1gZ2dcssuiq3",1]],"weight_threshold":1},"balance":{"amount":"2271951","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-10T16:30:24","curation_rewards":125083,"delayed_votes":[],"delegated_vesting_shares":{"amount":"401742886651","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"19749952932","last_update_time":1619010645},"governance_vote_expiration_ts":"2022-06-05T03:46:54","hbd_balance":{"amount":"4416","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-19T11:50:15","hbd_seconds":"0","hbd_seconds_last_update":"2021-04-19T11:50:15","id":743474,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-19T04:48:54","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-05-11T00:52:48","last_post_edit":"2020-05-11T00:52:48","last_root_post":"2020-05-07T18:35:33","last_vote_time":"2021-04-21T13:10:45","lifetime_vote_count":0,"memo_key":"STM7jenfiKERJ5a9UeDt7DMcVrmmVXebGbHRjQFoceBoFhttRWhs1","mined":false,"name":"atmospheric-haze","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5hFq2JULNLJ4kPFStHkQ3xZ9j5jpt7g1qrq3TajsPfr7Vn4eiX",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":719,"post_voting_power":{"amount":"78999811728","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["busy.app",1],["hive.blog",1],["partiko-steemcon",1],["peakd.app",1],["smartsteem",1],["steemauto",1]],"key_auths":[["STM6paafsyZAEf3ubLDF1Rn3bSXkLg5MqsLXnigVGBF6DAgQn93UN",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":317878,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"28377647","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"15","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-08-23T15:16:06","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-08-23T15:16:06","savings_withdraw_requests":0,"to_withdraw":"4387717724507","vesting_shares":{"amount":"480742698379","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"67228744669","last_update_time":1619010645},"withdraw_routes":0,"withdrawn":"4387717724507","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM7BLgYS12EkkrJ4k4gpL4bhUKfbNMer5UciHA6xcvRmZziLgY23",1]],"weight_threshold":1},"balance":{"amount":"1412891","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-11-17T23:41:03","curation_rewards":33380,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":3224003162,"last_update_time":1587188145},"governance_vote_expiration_ts":"2022-08-11T10:54:48","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-09T16:04:24","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-09T16:04:24","id":1172672,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-12-29T06:24:30","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-01-28T10:21:21","last_post_edit":"2019-01-28T10:21:21","last_root_post":"2019-01-28T10:21:21","last_vote_time":"2020-04-18T05:35:45","lifetime_vote_count":0,"memo_key":"STM8J5AY3rQ5zg4wxSFMnprURuehTtUBsD45oWeYEbcN4qyDy33Xz","mined":false,"name":"atom-jp","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM74XKZUqcoa18QoTy7EPgrHcBuVA2hxn2hEivXwmmVBcZ3w2C8Q",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":16,"post_voting_power":{"amount":"12896012649","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["steemauto",1]],"key_auths":[["STM7RGYYzwAJyA6ZoANiPSE6fW2n6r8xvPrGiPU3AuuRQ6BkqKPv5",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":25048,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1086428167","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"555","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"334","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2019-01-22T19:29:36","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-01-22T19:29:36","savings_withdraw_requests":0,"to_withdraw":"2768632097594","vesting_shares":{"amount":"12896012649","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"12638092396","last_update_time":1587188145},"withdraw_routes":0,"withdrawn":"2768632097594","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM71Vm3JJgVxNUNk3C9K5SrsFAwkbM98EEP8FJGfoCAKYjyDa1QA",1]],"weight_threshold":1},"balance":{"amount":"20094143","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-11T20:56:51","curation_rewards":894446,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"13761037821617","last_update_time":1590121953},"governance_vote_expiration_ts":"2022-07-25T17:52:51","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-02-11T07:17:18","hbd_seconds":"0","hbd_seconds_last_update":"2021-02-11T07:17:18","id":8361,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-11T07:13:30","last_owner_update":"2016-07-26T21:48:06","last_post":"2019-09-19T18:16:48","last_post_edit":"2019-09-19T18:16:48","last_root_post":"2019-09-19T18:16:48","last_vote_time":"2020-03-18T07:10:27","lifetime_vote_count":0,"memo_key":"STM5GzBXeW42Szk93deMGqFc2vr6xueUPA8R1qAKtYfJMEDH3wB8j","mined":false,"name":"atomrigs","next_vesting_withdrawal":"2021-04-22T07:16:30","owner":{"account_auths":[],"key_auths":[["STM85yB9FZWqKdbpApH3go7VvFtkk7FYnATrXXGNFqph6gGznLTBz",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":726,"post_voting_power":{"amount":"16943246966123","nai":"@@000000037","precision":6},"posting":{"account_auths":[["hive.blog",1]],"key_auths":[["STM75nXiia79SctKkefKmxHVe15S9kHuFjaChs48MJyKAdMKkCCfn",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3274380,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"55034639573831","vesting_shares":{"amount":"16943246966123","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"4233433813372","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"55044151286471","last_update_time":1590121953},"withdraw_routes":0,"withdrawn":"38100904320348","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5GguZKwWkXoXv6kX6fh8yQ87oEodvPkGWKyySUoqeJQKTAP6Jf",1]],"weight_threshold":1},"balance":{"amount":"10219384","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-08-07T15:49:00","curation_rewards":21247864,"delayed_votes":[],"delegated_vesting_shares":{"amount":"19055243660","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"24730044861834","last_update_time":1619033211},"governance_vote_expiration_ts":"2022-10-03T19:58:42","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-31T19:37:39","hbd_seconds":"3715866","hbd_seconds_last_update":"2021-04-16T19:46:12","id":49759,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-05-21T03:06:51","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-03-18T03:22:57","last_post_edit":"2021-03-18T03:22:57","last_root_post":"2021-03-03T21:59:27","last_vote_time":"2021-04-21T19:26:51","lifetime_vote_count":0,"memo_key":"STM5JRSxjqah39xrxvLwed8EhNZNVSgyEsGwve7tjmMRYi9vZyZGP","mined":false,"name":"ats-david","next_vesting_withdrawal":"2021-04-28T20:06:09","owner":{"account_auths":[],"key_auths":[["STM5JwFxotUQbxgN8BLNhEwnAqZmnW8mtno8faTCBtr4bY9Dz6k4h",1]],"weight_threshold":1},"pending_claimed_accounts":91,"pending_transfers":0,"post_bandwidth":12245,"post_count":6771,"post_voting_power":{"amount":"98920179447338","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1],["steemauto",1],["steempeak.app",1],["streemian",1]],"key_auths":[["STM88QeEpdcBzuuKf35Z61xpgpwuj7wvQoD28TjUnmjJdk4huZyTg",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":82410583,"proxied_vsf_votes":["28444672799468","41501562726",0,0],"proxy":"","received_vesting_shares":{"amount":"30902828576987","nai":"@@000000037","precision":6},"recovery_account":"kris10","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"32991168298","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"17446","nai":"@@000000021","precision":3},"savings_balance":{"amount":"5000000","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-05-02T16:29:45","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-05-02T16:29:45","savings_withdraw_requests":0,"to_withdraw":"73569054260883","vesting_shares":{"amount":"68036406114011","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"5659158020068","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"97930977652864","last_update_time":1619033211},"withdraw_routes":0,"withdrawn":"5659158020068","witnesses_voted_for":28},{"active":{"account_auths":[],"key_auths":[["STM6jfTx335H4eu9fH5A2JpJ7KA8qF6fe2xjVVMv1kCt5r8ygc1V4",1]],"weight_threshold":1},"balance":{"amount":"4624755","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-21T03:01:24","curation_rewards":872336,"delayed_votes":[],"delegated_vesting_shares":{"amount":"19231587063","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"5893532061","last_update_time":1619033181},"governance_vote_expiration_ts":"2022-06-22T05:41:06","hbd_balance":{"amount":"40","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-01-24T06:55:54","hbd_seconds":"51607920","hbd_seconds_last_update":"2021-02-08T05:19:12","id":457027,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-26T07:02:12","last_owner_update":"2017-11-21T03:07:18","last_post":"2019-01-09T19:25:36","last_post_edit":"2019-01-09T19:25:36","last_root_post":"2019-01-09T19:25:36","last_vote_time":"2021-04-21T19:26:21","lifetime_vote_count":0,"memo_key":"STM5c545pphT4jqsoTfzaU9xCP82t3Q2kgzcZshVPDgAdSoS7xDsN","mined":false,"name":"ats-witness","next_vesting_withdrawal":"2021-04-25T06:58:06","owner":{"account_auths":[],"key_auths":[["STM7JzU6TMr7qZdSbRst7GEQS3qoi6XtwwbVdr9TD1P7qC5vviFMV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":9,"post_voting_power":{"amount":"426472069920","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1],["steemauto",1]],"key_auths":[["STM6sS5Jcwevs4P54J4jDHH8siYoGZZKz4EWdhvBh7saKgmKHDwsc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":231522,"proxied_vsf_votes":["11264410000",0,0,0],"proxy":"ats-david","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"ats-david","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"9731327784","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"5127","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5237673241836","vesting_shares":{"amount":"445703656983","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"402897941680","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"23338386961","last_update_time":1619033181},"withdraw_routes":0,"withdrawn":"4834775300160","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8McrCE628rRjTuoX2mAGJg13Lisyoen5QSdtN4kfQac6QUbT6U",1]],"weight_threshold":1},"balance":{"amount":"7094050","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-11-11T03:40:54","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1605066054},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1420147,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM59kGJDNFyDpvY51G8VSXPmLK3xZtLRo52koxY43wUnZeuWJwJ9","mined":false,"name":"audiomancer","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6urjVFph2KbPz9vAxQZ6JRZpnTyoiu5mHFHJWiwpC25PjfWGLi",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[["threespeak",1]],"key_auths":[["STM624W5bQxAD7Lt6FyAUnDGGKjxMuFZyxKD9eKLskFMpAx5YPWp8",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"threespeak","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1605066054},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5Zu5MLtcJn9QmZc5eXDa6NbdgJQsUyv2rCfFMJLtgWmyheJw5n",1]],"weight_threshold":1},"balance":{"amount":"10197298","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-08T13:24:18","curation_rewards":513155,"delayed_votes":[],"delegated_vesting_shares":{"amount":"14536861130449","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"51299331589","last_update_time":1619027307},"governance_vote_expiration_ts":"2022-10-07T04:16:48","hbd_balance":{"amount":"22","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-16T22:33:18","hbd_seconds":"0","hbd_seconds_last_update":"2020-07-19T16:27:06","id":580990,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-19T14:03:36","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-03-01T06:12:51","last_post_edit":"2020-03-01T06:12:51","last_root_post":"2020-01-27T18:38:45","last_vote_time":"2021-04-21T17:48:27","lifetime_vote_count":0,"memo_key":"STM6tg8PqKxiFPRpg6TM9XYvbFqduCs3tDWPkQDEwkcjZF9v52bMC","mined":false,"name":"auminda","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM57DsW6j24QjVY2vGaUjgwPsP3ZcwVX2V6sP8MifyfRADQq8JDf",1]],"weight_threshold":1},"pending_claimed_accounts":10,"pending_transfers":0,"post_bandwidth":0,"post_count":540,"post_voting_power":{"amount":"205197326357","nai":"@@000000037","precision":6},"posting":{"account_auths":[["holybread.app",1],["steemauto",1]],"key_auths":[["STM7DN4ahFEYCwJFyEZ27vKJzmTn263UA4zrXC1hTvfV9oVVmQqmv",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":305636,"proxied_vsf_votes":[0,0,0,0],"proxy":"thebluewin","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"257797471654","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"132973","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"14742058456806","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"189293874968","last_update_time":1619027307},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5g8maqVnGwE62HU68kwHctHfAZk18yCCfdueAUzbcXxWPvGQZi",1]],"weight_threshold":1},"balance":{"amount":"59845793","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-10-01T06:32:18","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4789526967","last_update_time":1606307454},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-01-24T17:04:39","hbd_seconds":"70684793484","hbd_seconds_last_update":"2021-02-08T11:26:15","id":1415086,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-11-25T00:29:21","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5rRXA2iwsxEKtyjQjK4jbYb5EffuGWYBZs3ToqHyjtQjoVkUFt","mined":false,"name":"aungsung","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8EjQTkDm4jVRdzjUsgWE4fAKDcuKDRfKa2bKF1WjRTQZBEu2nM",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"19158107871","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1]],"key_auths":[["STM8g4G4LRWPFMpyhgZQJzvDfZCDPo6ARZ7yL85FZbuumNoNSyVo5",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"oracle-d","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"19158107871","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"19158107871","last_update_time":1606307454},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8V1Te1BmGVBJmaEKTYSTMKmkbBJ2aiK53TaHp2S84hmu1Zkmka",1]],"weight_threshold":1},"balance":{"amount":"4846101","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-11T10:53:36","curation_rewards":45177070,"delayed_votes":[],"delegated_vesting_shares":{"amount":"12738512726885","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"23965257708196","last_update_time":1619038983},"governance_vote_expiration_ts":"2022-11-23T04:55:15","hbd_balance":{"amount":"32","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-16T13:20:15","hbd_seconds":"9665640","hbd_seconds_last_update":"2021-04-21T20:59:18","id":16662,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-04-08T20:10:06","last_owner_update":"2018-09-23T18:55:03","last_post":"2021-04-21T04:56:33","last_post_edit":"2021-04-21T05:10:54","last_root_post":"2021-02-07T04:46:03","last_vote_time":"2021-04-21T20:39:39","lifetime_vote_count":0,"memo_key":"STM84mT6PrASGyts9h95VfRDAEBnauH3kD7c8qBpSnN39dajoraKR","mined":false,"name":"ausbitbank","next_vesting_withdrawal":"2021-04-27T15:36:30","owner":{"account_auths":[],"key_auths":[["STM76i8C5PGVykp4SVjpz2Q73ksqdoohpN9KF5aMyWREBt5dLh5ma",1]],"weight_threshold":1},"pending_claimed_accounts":1145,"pending_transfers":0,"post_bandwidth":16401,"post_count":4921,"post_voting_power":{"amount":"106299994021204","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dapplr",1],["dbuzz.app",1],["ecency.app",1],["steemauto",1],["threespeak",1],["vimm.app",1]],"key_auths":[["STM5B9DCRZ7FYzSV72RDSXnCypoJRgmgA5bSdPkmiqcP4My35KfbX",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":41996434,"proxied_vsf_votes":["108293269195919","69376407093241","25557600789",0],"proxy":"","received_vesting_shares":{"amount":"10111000000","nai":"@@000000037","precision":6},"recovery_account":"krystle","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2019-07-18T07:48:39","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-07-18T07:48:39","savings_withdraw_requests":0,"to_withdraw":"124859154353830","vesting_shares":{"amount":"119028395748089","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"9604550334910","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"67714978416888","last_update_time":1619038983},"withdraw_routes":1,"withdrawn":"38418201339640","witnesses_voted_for":29},{"active":{"account_auths":[],"key_auths":[["STM82JLLL2ox1mon7Uyfh9KqLvJ5JYhnnKanYnrB4RdVchKzTDDkH",1]],"weight_threshold":1},"balance":{"amount":"3980221","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-03-31T04:14:33","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1107816493473","last_update_time":1584686553},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"160312","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-20T06:42:33","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-20T06:42:33","id":1248527,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-03-31T04:23:36","last_owner_update":"2019-03-31T04:19:03","last_post":"2020-03-20T05:48:06","last_post_edit":"2020-03-20T05:48:06","last_root_post":"2020-03-20T05:48:06","last_vote_time":"2020-02-17T05:24:24","lifetime_vote_count":0,"memo_key":"STM7eXjU5kWaR4vwv41QgcZ2pbFx9K164ZxpTV97yQ7voitGD7BYi","mined":false,"name":"ausder","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5Qh86JJWaF86K2Uv1jESUdp39UEjzNxLNHnkWstVHfup5fQTa1",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1277,"post_voting_power":{"amount":"1229285303","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5FfMWndGosuBZJpWryWuzGosLgsXi3c7qW3diGBz6LY94PtJfs",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":4583720,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"14284","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"3201","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"126139423062","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"64423","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4430036688594","vesting_shares":{"amount":"1229285303","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4431265973897","last_update_time":1584686553},"withdraw_routes":0,"withdrawn":"4430036688594","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM4ym2eegjHz49kk1vTwJtSE9brDxspRkEDGNdRYVVo1vHBcrxeb",1]],"weight_threshold":1},"balance":{"amount":"2404554","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-26T19:51:36","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"30716787223605","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1516996296},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1399243","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-08-05T01:06:24","hbd_seconds":"3141028227627","hbd_seconds_last_update":"2019-08-31T01:03:54","id":668705,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-04-06T21:21:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-03-03T17:11:21","last_post_edit":"2018-03-03T17:11:21","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-05-12T21:39:30","lifetime_vote_count":0,"memo_key":"STM5N92HxvZvbYxRfSzJoiGNknQ7o67pCdw46u39ZMAu8YgL2VpAH","mined":false,"name":"austinprinceton","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6EvAh936hSCkktnr7p835Rz6kiuaUqQDA2AfDzEKnAW99pyoE7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"12229828665","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dtube.app",1]],"key_auths":[["STM6taFJmUeFPjtgXhBGK9or8vm8ktcGw6cmDcoKPJBn2zQxjfDrf",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"30729017052270","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9604,"last_update_time":1526161170},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7JpV8Ay1vXD88sZQkjcxbavW7xkNL6hQMvozgfJjuZ5qQbuCwP",1]],"weight_threshold":1},"balance":{"amount":"3649981","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-10-28T01:02:03","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1332367,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM63PvYXPymuaf7nU9DCC71rHS2rpUbKLCTPXC2q1RnoHrBuvJaa","mined":false,"name":"averkruyse","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7yv1yFnwXzZsg7SemNFy5yeAcfJV4M9mSCTQkYUJYrtVD8TUNa",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8KMPxAcp7TQjgnLyqVRv8RBg5AyB63TNPsgMSPyLXKg8gnnKxo",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6AfcndhAvW8bXuYJ65ey4EBBSDJH4H3gttq8TDD7LJZyYapnyg",1]],"weight_threshold":1},"balance":{"amount":"6406791","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-05-27T17:04:57","curation_rewards":244,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2986117458325","last_update_time":1583951001},"governance_vote_expiration_ts":"2022-07-17T03:15:33","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-11T18:23:21","id":1278109,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-05-31T08:40:06","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-07-31T10:39:57","last_post_edit":"2019-07-31T10:39:57","last_root_post":"2019-07-31T10:39:57","last_vote_time":"2019-06-21T19:30:45","lifetime_vote_count":0,"memo_key":"STM5BYdyzqPkVRpoxBrBoT64iwFsNyj5dJ2nSePww1Rd8tYZPmz99","mined":false,"name":"avibirdi","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6gySyN9zrVJXAhwTvZ43PxqmygkbcZKm8Eu31QHAxs65vKwHNN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":25,"post_voting_power":{"amount":"11944469833303","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["somee",1]],"key_auths":[["STM875SJW7kJxHFTVnwaRjuGZwjcbq5ynTRv6313vCTaGJH4jb8kN",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"11944469833303","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"11944469833303","last_update_time":1583951001},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM5sVajKpGzqX65uxNLkYJK7sv8zK7rzbQhbD7VxpXeEkGhAYRVU",1]],"weight_threshold":1},"balance":{"amount":"1371358","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-18T15:22:57","curation_rewards":1661,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1503069777},"governance_vote_expiration_ts":"2022-07-25T04:38:36","hbd_balance":{"amount":"4268","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-05-25T11:39:36","hbd_seconds":"10730024100","hbd_seconds_last_update":"2019-06-23T15:19:21","id":317781,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-01-25T23:09:15","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-04-30T16:34:30","last_post_edit":"2019-04-30T16:34:30","last_root_post":"2019-04-30T16:34:30","last_vote_time":"2019-04-30T16:34:54","lifetime_vote_count":0,"memo_key":"STM5qooPoBFm3vt8nAXnUPZNteLJjguGXfwioweEFjGByjmsov1g2","mined":false,"name":"avrdan","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8QWZFC8jAu1N7hUL6VXtjjJEKC96KShPyuzqs81r3pZgY7hnXT",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":66,"post_voting_power":{"amount":"2352106347283","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5g4YRGhibJLLZ5E9D1McALNES3KaX4euB1UzkwPaj4er2aHXBt",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":20275,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"2352106347283","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2352106347283","last_update_time":1561303161},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM8NLqj7bDT2JGqLz9zqg8YmdjrA8f4ACT7x87y2CW77egs59tkm",1]],"weight_threshold":1},"balance":{"amount":"1965990","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-15T21:19:18","curation_rewards":128,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":588781391,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"19","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-05-14T02:15:09","hbd_seconds":"29806974","hbd_seconds_last_update":"2018-06-02T10:39:09","id":160799,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-07-04T17:00:24","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-08-11T09:00:24","last_post_edit":"2017-08-11T09:00:24","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-02-11T01:21:30","lifetime_vote_count":0,"memo_key":"STM6T6NiB7RXsjpHTD5zFRrdfZjJ6CQxQcS21Ac9rLQtyofXTZwA2","mined":false,"name":"awesomo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7MiWXPqiAkNzkZ67sxg5DZJSkkd6ReJLLn9j48cfadwhcrt9uP",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4,"post_voting_power":{"amount":"2355125564","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7vuEraV5SsKUhwBNGQcrTatnqhANCFcKYgrn3H1Y63Kpfrc3qE",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":15,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"2355125564","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":2355125564,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM56QsQXuQEjVER5mqNzP1qGYkqxgAcnUYmV3qXwRj5SVZLBtmwR",1]],"weight_threshold":1},"balance":{"amount":"1421243","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-12-31T00:48:39","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1351229,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7djGRQXUhpYYtBUASKPxU1YKTvHVavAHFArdExv3GFAhwXB2Az","mined":false,"name":"axldickinson89","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7GzW7tShZ69WU98qxAWDzHzpmEg3qR68wPF3otMB8bxXwQTStf",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8gr62nDdhyg3UfgT6Us6gSAvwu6FH9mho2DT6hCXnD94DaRcsf",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM76cL77xk9gUDMVeSYWc5hmXUSZct1UNa2NxpubJJ24kNXoRTb2",1]],"weight_threshold":1},"balance":{"amount":"1297430","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-13T18:08:00","curation_rewards":13924,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"60086966468","last_update_time":1579415133},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"4637","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-12-28T19:12:00","hbd_seconds":"8600767881","hbd_seconds_last_update":"2020-01-19T06:25:33","id":762476,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-11T21:32:27","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-01-19T08:15:00","last_post_edit":"2020-01-19T08:15:00","last_root_post":"2020-01-19T08:15:00","last_vote_time":"2020-01-12T12:07:24","lifetime_vote_count":0,"memo_key":"STM6seoXroDhqtKn29oVb37yM46LUn2RVxVR2QEuSP64NBMzJv6Jq","mined":false,"name":"ayesha0018","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM79kbcdhwAjjHZ9XgUotEQCZpcdzzkX3htRke8vGuAspq7znhD7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":823,"post_voting_power":{"amount":"9989850931","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steem.app",1],["upvotebank",1]],"key_auths":[["STM8aN7uqjAVHp52fi7jZS3fsQ8UENAZUSCEZAeysoJF1tg8Ye2bE",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1875741,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"173","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"357672517","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"182","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"332739354926","vesting_shares":{"amount":"9989850931","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"240347865877","last_update_time":1579415133},"withdraw_routes":0,"withdrawn":"332739354926","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6fovUCxexfVsgo6y4UYTmxjYebGbkqJ5BAh1sJ5Nq5vwR7qGLA",1]],"weight_threshold":1},"balance":{"amount":"1599028","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-25T10:17:00","curation_rewards":11168,"delayed_votes":[],"delegated_vesting_shares":{"amount":"1026526555142","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6715279352","last_update_time":1584703947},"governance_vote_expiration_ts":"2022-07-01T04:32:24","hbd_balance":{"amount":"1125853","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-23T11:03:30","hbd_seconds":"332706053940","hbd_seconds_last_update":"2020-02-26T21:10:00","id":333510,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-01-26T23:15:12","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-02-18T19:29:42","last_post_edit":"2020-02-18T19:29:42","last_root_post":"2020-02-18T19:29:42","last_vote_time":"2020-03-20T11:32:27","lifetime_vote_count":0,"memo_key":"STM6GtngUaJkcYdd9K1t1RPcJSMiwMVHz42ZVogngTUYHhZmDiy3c","mined":false,"name":"aymenz","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8VaMmjvZrAjwzCT1YxUE99B4ZBHu1T9UFSrWGThNDc9Um94jyV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1769,"post_voting_power":{"amount":"26861117410","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dclick.app",1],["dlive.app",1],["dtube.app",1],["engrave.app",1],["ntopaz-artisteem",1],["steemhunt.com",1],["streemian",1],["utopian.app",1]],"key_auths":[["STM5aSPPVGoqeuPJv3fqYAtMFoQNfYTemApvhCwVfZetPyNidnteb",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2190522,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"157600221148","vesting_shares":{"amount":"1053387672552","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"26323895061","last_update_time":1584703947},"withdraw_routes":0,"withdrawn":"157600221148","witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM6ecuj6eFSvfrAo9Wi4UnaPyy2KKyj86aadTgACtZaeCw2x8nG6",1]],"weight_threshold":1},"balance":{"amount":"8962867","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-30T14:29:45","curation_rewards":416916,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"8699268054631","last_update_time":1618991226},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"4682","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-22T17:54:54","hbd_seconds":"2672995938","hbd_seconds_last_update":"2021-03-29T08:30:03","id":142896,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-26T17:46:45","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-21T07:46:45","last_post_edit":"2021-04-21T07:46:45","last_root_post":"2021-04-21T07:46:45","last_vote_time":"2021-04-21T07:47:06","lifetime_vote_count":0,"memo_key":"STM8VCPrFyyUtBNdwX1CXh5eFFKXsYBNBDCERyGYUum5YS1kzfq8R","mined":false,"name":"ayusor","next_vesting_withdrawal":"2021-04-26T08:31:30","owner":{"account_auths":[],"key_auths":[["STM6Bqn14gLP3K4Wk9dZjigje4RUzXaGPL6cD2KCp4Btm9gxQjpPE",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1048,"post_voting_power":{"amount":"38662360985655","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1]],"key_auths":[["STM6wtPpaNS1SR6XzhFiopJNFLMZhXnC2wTbZmkMoD7N3Bcvha4HN",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":488138,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"1072","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5814146240","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"3074","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2019-01-31T20:03:33","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-01-31T20:03:33","savings_withdraw_requests":0,"to_withdraw":"50248753972671","vesting_shares":{"amount":"38662360985655","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"3865288767129","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"34101130774155","last_update_time":1618991226},"withdraw_routes":0,"withdrawn":"11595866301387","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM68RJB6Z5xMwiV2Rh3hELLpnYJTdWNADvb6xwjHX5ZkTqVTdtqf",1]],"weight_threshold":1},"balance":{"amount":"6138810","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-11-25T17:12:42","curation_rewards":288312,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"5301068828221","last_update_time":1619009679},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"19","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-27T03:00:15","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-21T17:19:00","id":1341097,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-11-25T17:24:51","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2021-04-21T12:54:39","lifetime_vote_count":0,"memo_key":"STM6HtSzY71E1Je4LjcvDtcWKuzecmYeX9PBb4srwqsQDJoBqXorG","mined":false,"name":"azabu","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7qXgWqSRDR1Nnkhrj2xKHbNmZdsexEF73N16uFm4bHzRWawMao",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"23295890357578","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1]],"key_auths":[["STM68GUwR8SNUfQmUoPMW4ao2fiN2SUxwkKTs2SnzDMY6WCkMdJzM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"31218476603011","vesting_shares":{"amount":"23295890357578","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"23295890357578","last_update_time":1619009679},"withdraw_routes":0,"withdrawn":"31218476603011","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6EFs3wGpn8ieWddo4knb62FydvqkH8augSMV42gS1yKxNZf1JQ",1]],"weight_threshold":1},"balance":{"amount":"4094162","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-27T11:34:15","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1509104055},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":426715,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6yekecAJ9CtyMGAoyHLL1EDz9gryDcyLJskk4iVKroHkomRqUv","mined":false,"name":"azuriteblue","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5c6vRj8843GpsywxZYCaqDRLUPRsJvyhTzkq9b37vxaJ1bVewP",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"10151522562","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7RQhMC46eSkeKC4ppmdiQtFVKVqT6g48EG7LsVqhXsZRwJdWh2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"8289012049136","vesting_shares":{"amount":"10151522562","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1509104055},"withdraw_routes":0,"withdrawn":"8289012049136","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6VpVw9w5h1u6QcZLCtokGVm2h6ebEPgiXjSzf4XBVRgJU4Yzdb",1]],"weight_threshold":1},"balance":{"amount":"3144923","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-02T16:51:03","curation_rewards":7104532,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1459615863},"governance_vote_expiration_ts":"2022-11-20T01:27:57","hbd_balance":{"amount":"5672","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":710,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2016-12-03T08:52:03","last_owner_update":"2016-12-03T08:52:03","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-12-24T02:22:51","lifetime_vote_count":0,"memo_key":"STM6LkPPdjFBLLhJCxs836dXAT9L2xzkr2KferkgchfYX53rzoc96","mined":true,"name":"badassmother","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5Dw6b5UT3cm97dJdiqUoLd62pJA3oSHU4wUYEuSUbzsbE8t84V",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"60610028","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM73XY5kpRZpVHTtiKT8P7LiG4q2ZfVWV1CPfhZwNowm7K7bmAdy",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[5406624,0,0,0],"proxy":"au1nethyb1","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"22543534","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"11","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4270123000000","vesting_shares":{"amount":"60610028","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1514082171},"withdraw_routes":0,"withdrawn":"4270123000000","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8R2TN8uKVjnHJrmTrFcCJWV49vno7GaHvBEZ38mU6L9HAeVwyz",1]],"weight_threshold":1},"balance":{"amount":"9623874","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-13T19:08:30","curation_rewards":649,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"20549079923880","last_update_time":1588317843},"governance_vote_expiration_ts":"2022-10-07T22:41:45","hbd_balance":{"amount":"207545","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-18T19:19:42","hbd_seconds":"17909700243","hbd_seconds_last_update":"2020-03-19T19:19:45","id":191140,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-02-12T01:00:30","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-05-04T19:36:09","last_post_edit":"2020-03-06T11:30:00","last_root_post":"2019-05-04T19:36:09","last_vote_time":"2019-03-09T00:43:24","lifetime_vote_count":0,"memo_key":"STM54npjAua2T8wtuwuiY3xHcVJRnDa6AKkmfbm6DjACh6RCW981M","mined":false,"name":"baga","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6QiSu1BRWfbzCW25Nj4JuqPAUxPc4WgBY47vNxHasVg2eCKMP2",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":33,"post_voting_power":{"amount":"79491799829","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["drugwars.app",1],["dtube.app",1]],"key_auths":[["STM541peXHEwcx7Ee4x6uber3wGySrAjpjkBET6BTafZBKxta4eb5",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":11816,"proxied_vsf_votes":[0,0,0,0],"proxy":"theycallmedan","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"74335","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2019-02-12T00:56:18","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-02-12T00:58:00","savings_withdraw_requests":0,"to_withdraw":"79730275228928","vesting_shares":{"amount":"79491799829","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"82196319695520","last_update_time":1588317843},"withdraw_routes":0,"withdrawn":"79730275228928","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5YiJYxMKsuQFpDt9crDW1HRhseTFnrbbQXRs3zoYcVLX75HfQB",1]],"weight_threshold":1},"balance":{"amount":"6722000","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-13T09:52:30","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1468403550},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":19504,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-03-18T09:48:09","last_owner_update":"2017-03-18T09:48:09","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5YiJYxMKsuQFpDt9crDW1HRhseTFnrbbQXRs3zoYcVLX75HfQB","mined":false,"name":"bait","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5YiJYxMKsuQFpDt9crDW1HRhseTFnrbbQXRs3zoYcVLX75HfQB",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"46993344612","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5YiJYxMKsuQFpDt9crDW1HRhseTFnrbbQXRs3zoYcVLX75HfQB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"46993344612","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1468403550},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5Y4CkbmBv6PfUVrCDyzgeiBtv51spfhB3GRhXkzKYZ6ZiGNrDd",1]],"weight_threshold":1},"balance":{"amount":"14207692","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-04-25T15:14:48","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"3806269106213","last_update_time":1593204534},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":150063,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-04-25T16:56:21","last_owner_update":"2017-04-25T16:56:21","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5RKuPDjPWbo6puBuHFpp192VVZ12jiEp2ukF4jjJBPdWBvo992","mined":false,"name":"baja-pete","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5BnBMQfSpRvMJfxrSRPwWxN4Fx2VN1Gp3bRMP5N5GZTrcdeyFN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"15225076424857","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7tfr5rGxoGQ6VwWVnD85PE6qUcALJUKhcGygiP4a3iLD4sca2Y",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"12277151134511","vesting_shares":{"amount":"15225076424857","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"15225076424857","last_update_time":1593204534},"withdraw_routes":0,"withdrawn":"12277151134511","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7edXTb2exMYBTay54E4ZSJ7S3kiftXsd3rD4khoGPatq59wd6h",1]],"weight_threshold":1},"balance":{"amount":"1465326","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-11-01T13:09:51","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1478005791},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":108626,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7edXTb2exMYBTay54E4ZSJ7S3kiftXsd3rD4khoGPatq59wd6h","mined":true,"name":"balin","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7edXTb2exMYBTay54E4ZSJ7S3kiftXsd3rD4khoGPatq59wd6h",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"5000000000","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7edXTb2exMYBTay54E4ZSJ7S3kiftXsd3rD4khoGPatq59wd6h",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"645018205748","vesting_shares":{"amount":"5000000000","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1478005791},"withdraw_routes":1,"withdrawn":"645018205748","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6hYej3ih4a4gHPRi1PJrSXmkTdHGYt2b7cTp6cRdDTBPCQLyqn",1]],"weight_threshold":1},"balance":{"amount":"2158305","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-01-08T03:07:48","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1187361,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM51BesC8qMp94kP2SfYvZtMvuLnhQeogFjCja9CtSh1tD5MmVeN","mined":false,"name":"bankroll10x","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6FxBJAv8nRK74LwAJLhXG3ECJVZhnJpB2XRjTXcLLEiQ8BJLK6",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6R1QqiWvJXuuiMBYdZH1mt3M3XbX5CqimX4MAnWzTsk9FSKwWB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM65k7Z7FAju161QxjafAtK8hfHgX7sYgaHpy17Yy4L172oyXAqT",1]],"weight_threshold":1},"balance":{"amount":"1345795","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-20T00:13:21","curation_rewards":642,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4119680415576","last_update_time":1614310383},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"13821","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-07-05T20:51:27","hbd_seconds":"0","hbd_seconds_last_update":"2020-07-05T20:51:27","id":414646,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-13T23:51:03","last_owner_update":"2017-10-20T00:30:48","last_post":"2020-08-08T20:16:33","last_post_edit":"2020-08-08T20:16:33","last_root_post":"2020-08-08T20:16:33","last_vote_time":"2020-09-02T19:22:51","lifetime_vote_count":0,"memo_key":"STM5vNStevmdkqSpr3d9oK7G2jtK5BjhRJR8zKQ8ecmakg2NtE8WL","mined":false,"name":"banner8888","next_vesting_withdrawal":"2021-04-28T02:58:06","owner":{"account_auths":[],"key_auths":[["STM5ovUnDtTwhJG8AeepJkfVwKEqzLMb4D1wZsoENNGQ7rbDim7Qt",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":62,"post_voting_power":{"amount":"8877537464602","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["hive.blog",1],["minnowbooster",1],["peakmonsters.app",1]],"key_auths":[["STM8m3WVJi5fdjnNCRgnsCYQwDWgy32UsG4YvKFBAgDr9o6Zuw4zB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2417,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"39","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1383118027","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"714","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"16469232428363","vesting_shares":{"amount":"8877537464602","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1266864032951","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"16478721662308","last_update_time":1614310383},"withdraw_routes":0,"withdrawn":"7601184197706","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7QSz79Y2BbjS8naGxxc682kLYfCCTHaqQFggJfsejzUDUu1gHY",1]],"weight_threshold":1},"balance":{"amount":"1383102","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-17T15:41:03","curation_rewards":17299,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"343084607602","last_update_time":1583841741},"governance_vote_expiration_ts":"2022-11-27T04:03:09","hbd_balance":{"amount":"44","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-04T18:01:45","hbd_seconds":"51432030","hbd_seconds_last_update":"2020-03-23T20:29:42","id":265599,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-10-24T00:38:33","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-02-26T13:45:15","last_post_edit":"2020-02-26T13:45:15","last_root_post":"2020-02-26T13:45:15","last_vote_time":"2020-03-03T18:38:12","lifetime_vote_count":0,"memo_key":"STM7Y2HGqt7Nq4VGHn8eNfohEPMYPjjmnPDLC8KjhJ67TxxUmLdst","mined":false,"name":"barber78","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6pCmiZBmDhsQitn42feKjGdK9DQcVMQSwt9JrKsqapTDbLxQaD",1]],"weight_threshold":1},"pending_claimed_accounts":1,"pending_transfers":0,"post_bandwidth":0,"post_count":3055,"post_voting_power":{"amount":"22078412874","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["bsteem",1],["buildteam",1],["busy.app",1],["dlike.app",1],["dlive.app",1],["dmania.app",1],["dngo",1],["dreply",1],["dtube.app",1],["fast-reply.app",1],["finally.app",1],["framesia.app",1],["fundition.app",1],["minnowbooster",1],["multitube.app",1],["oneplace.app",1],["share2steem.app",1],["steem-plus-app",1],["steemdunk",1],["vimm.app",1],["we-resist",1]],"key_auths":[["STM7BBEmmLZ3U1hfrSZ8gMfRKrLuZiU4FoLRGCVZwnyBM3pHu9oAs",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":4639554,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-03-07T20:08:12","savings_hbd_seconds":"23904633360","savings_hbd_seconds_last_update":"2018-04-06T07:59:18","savings_withdraw_requests":0,"to_withdraw":"2925563371334","vesting_shares":{"amount":"22078412874","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1372338430409","last_update_time":1583841741},"withdraw_routes":0,"withdrawn":"2925563371334","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM5HfvSaF9gq3BY55Bg8RiMFfupTNWxE9sboY3aiGfwVyLRre8Qs",1]],"weight_threshold":1},"balance":{"amount":"3440012","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-10T18:01:54","curation_rewards":185624,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1662534340323","last_update_time":1582998468},"governance_vote_expiration_ts":"2022-08-23T03:14:12","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-16T18:18:51","hbd_seconds":"0","hbd_seconds_last_update":"2020-02-16T18:18:51","id":592859,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-02-25T17:34:51","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-12-27T19:47:24","last_post_edit":"2019-12-27T19:47:24","last_root_post":"2018-03-12T18:59:30","last_vote_time":"2020-02-29T17:47:48","lifetime_vote_count":0,"memo_key":"STM7BxY3vq3eQTS1teFJZBjU8Xo2zG9tm4mSJ85tRn3yiJTQajcvE","mined":false,"name":"bassuniverse","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6iK3eRLAopfeeePexrrRswL7LfmjrRHcfYu8Yeagc2dkMDfbFy",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":511,"post_voting_power":{"amount":"33118213951","nai":"@@000000037","precision":6},"posting":{"account_auths":[["smartsteem.app",1]],"key_auths":[["STM7iKpVqm9ByydTgJ9DJCC5DLWTV5CWjbQaRWJfu6oVgwoVGGzto",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":24335,"proxied_vsf_votes":[0,0,0,0],"proxy":"theaustrianguy","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"33367232","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"17","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"6617019147343","vesting_shares":{"amount":"33118213951","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"6583635987681","last_update_time":1582998468},"withdraw_routes":0,"withdrawn":"6617019147343","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7XbwNwNp6zt1xsqpBdGVpnsfi7X5Vumbpcm3mR2Q14e1zyX5Gb",1]],"weight_threshold":1},"balance":{"amount":"2500001","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-27T00:13:54","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1490573634},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":141570,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7xxeEk1kvhNoaH4raeuYGjACjAS8UUMLjavmTwjiiq8wyEdygT","mined":false,"name":"batesie1","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8U7TagLrictBU2FHVdTQJ7LP4SYEasDhwhuXE6jb8HAMejRUA5",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"72776556018","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7stSbG7PsHjzEPEAzcbJNE9Norcsp6C3jLWoW5BF8LpYXmkfnU",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"72776556018","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1490573634},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM83zATAKt4fttZmSL6rJBcs7xNcabs13LRi9ruuyVN7k7AC4CQM",1]],"weight_threshold":1},"balance":{"amount":"1157820","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-12-16T16:39:12","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1481906352},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":120000,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6K6MoaQkHYuBTsBh8RzYSzUGcD3vDNCCsXQXouXJrUJ1FFzyKf","mined":false,"name":"batsoff","next_vesting_withdrawal":"2021-04-27T22:27:57","owner":{"account_auths":[],"key_auths":[["STM5YLpLdMv1u8C2fUMsjQ6AfKBmVqZ46kfevHrXtyLVNZSJ2kGTj",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1380511807016","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5xN1CucXAtW5USRVKNcho5uV2sSQkRAyYVfn4z4aF8vPaSxfh8",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3564627792525","vesting_shares":{"amount":"1380511807016","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"274202137887","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1481906352},"withdraw_routes":0,"withdrawn":"2193617103096","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM4xmGHWEuPMpsCCLwRFRfbArEkpjgdqVyY1TesWHSrf2WbJyDMX",1]],"weight_threshold":1},"balance":{"amount":"2910705","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-19T13:46:54","curation_rewards":2018093,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1241518390317","last_update_time":1584565464},"governance_vote_expiration_ts":"2022-07-04T22:19:27","hbd_balance":{"amount":"1038","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-04T12:05:42","hbd_seconds":"1289115036","hbd_seconds_last_update":"2020-03-18T21:04:24","id":268798,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-10-04T12:51:09","last_owner_update":"2019-07-07T01:30:42","last_post":"2020-02-20T16:01:33","last_post_edit":"2020-02-20T16:14:30","last_root_post":"2019-10-12T05:36:03","last_vote_time":"2020-03-07T15:29:09","lifetime_vote_count":0,"memo_key":"STM6jdxDxH3PEN4kQXtZFGjgDnUVPxWGbUFjX2X3ja5xccq6PVCti","mined":false,"name":"bbana","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6JATRg48d4UxhSivmN2xbT5zwnD65VRWzb2CBCvXQ2bZKp5gv1",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":5175,"post_voting_power":{"amount":"7336509926","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["busy.app",1],["dclick.app",1],["dmania.app",1],["engrave.app",1],["ntopaz-artisteem",1],["peakmonsters.app",1],["steemhunt.com",1]],"key_auths":[["STM6VFB1mmwEhrTSVYSqb1h3mLiNw6y74pN8kHjozNnpDbBtpGKT3",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":6660699,"proxied_vsf_votes":[0,0,0,0],"proxy":"clayop","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"7162620185284","vesting_shares":{"amount":"7336509926","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4966073561274","last_update_time":1584565464},"withdraw_routes":0,"withdrawn":"7162620185284","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5orjdE9KSVnJsuccSFHjRPyr68ALce52bVFiGnrssmFQFC2D6Q",1]],"weight_threshold":1},"balance":{"amount":"4911138","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-25T18:39:45","curation_rewards":238726,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2218686876452","last_update_time":1584671391},"governance_vote_expiration_ts":"2022-06-06T06:25:33","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-10T00:12:30","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-10T00:12:30","id":383507,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-07-14T05:05:45","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-10-05T19:45:06","last_post_edit":"2017-10-05T19:45:06","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2020-03-20T02:29:51","lifetime_vote_count":0,"memo_key":"STM8KiJC3gH1VcY9iNtCNkgutoxRwyX5KQmzgtzCbt4PxXc6PS2iB","mined":false,"name":"bcboilermaker","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6GuMCfmmd76zwnTCBwk5T77s2FG9DyrC4jsKsct4jo3HGVHYwq",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":9,"post_voting_power":{"amount":"28720865715","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM68fG2Pbzzoo92jLUtqRm5dkfhFnszhG8xX2Mgq8xarcH7SiomK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":26598,"proxied_vsf_votes":[0,0,0,0],"proxy":"kingscrown","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"9647993168","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"4926","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"15603","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-11-03T20:32:39","savings_withdraw_requests":0,"to_withdraw":"9583195526769","vesting_shares":{"amount":"28720865715","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"8697252555692","last_update_time":1584671391},"withdraw_routes":0,"withdrawn":"9583195526769","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5cu72RPw1vCJpBUQnUfzL5ZrmgobERT2P4qfTrUoz1PjX2zqZN",1]],"weight_threshold":1},"balance":{"amount":"3064571","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-05-03T13:25:30","curation_rewards":1465621,"delayed_votes":[],"delegated_vesting_shares":{"amount":"1891017499373","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"8324615015399","last_update_time":1619037897},"governance_vote_expiration_ts":"2022-10-28T02:32:57","hbd_balance":{"amount":"165607","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-09T02:59:36","hbd_seconds":"150637173831","hbd_seconds_last_update":"2021-04-21T14:59:27","id":966704,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-04-19T01:27:24","last_owner_update":"2018-05-03T13:30:24","last_post":"2021-04-21T20:45:00","last_post_edit":"2021-04-21T20:45:00","last_root_post":"2021-04-16T16:52:27","last_vote_time":"2021-04-21T20:44:57","lifetime_vote_count":0,"memo_key":"STM872xmsVM5KDWxYmMPXvpqn6PhYbBzY4eCHDLHpPd5rJGF6Ad8e","mined":false,"name":"bdcommunity","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6bqKzBFty15mDRKgxNJpvVKioM73ZEfw1BrLEMHfbd6MVES2j4",1]],"weight_threshold":1},"pending_claimed_accounts":306,"pending_transfers":0,"post_bandwidth":0,"post_count":9811,"post_voting_power":{"amount":"33298460061596","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1]],"key_auths":[["STM5zWptSkrFfzWAirogj7uNLVPPVxCx9J2Aj5KoodrkXFL5Rradk",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":6203277,"proxied_vsf_votes":["118800923864310",0,0,0],"proxy":"reazuliqbal","received_vesting_shares":{"amount":"19502317041178","nai":"@@000000037","precision":6},"recovery_account":"reazuliqbal","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"15687160519791","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"32632490860364","last_update_time":1619037897},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6vwnrkcgS1btcyWpn52wP7mPYCemSoxv9jLNeFbLKmJSCBzzFb",1]],"weight_threshold":1},"balance":{"amount":"7532330","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-03-01T07:53:57","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4997055008834","last_update_time":1576402992},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1230125,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-06-13T12:47:09","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2019-07-13T12:35:06","lifetime_vote_count":0,"memo_key":"STM5oTX2h44SdcVMgEbuDfV6hVWtt1qcJsgenJDjuj19WBMrza6ht","mined":false,"name":"beast2711","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6MHQbJsgVWHAfGtufVC2VqAdA5m9Cgr1duv62APs5h13PstGy6",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"19988220035339","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dtube.app",1],["threespeak",1]],"key_auths":[["STM6PDx5jcwWg29vH66poNrAjeZ4SpQ5jhp4FQkdFT6qFtKYvAKR3",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"19988220035339","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"19988220035339","last_update_time":1576402992},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6FMi6xM2X6qi8pSXyX9tqUpLoRYGt5sYDaCJcVaHbQyECWPchw",1]],"weight_threshold":1},"balance":{"amount":"17687298","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-08-27T22:40:15","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1598568015},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1406596,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-27T23:06:33","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6CufVQWPHtfF3SZLu7MQWHW7gb2TJyXm94hVyXb7ta3QZ7iysY","mined":false,"name":"beaxywallet","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6AmhP1ArPePP2d4Sf9EEGBfyUM8Q8esGeS8EG518wi9UotCqkB",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[["hive.blog",1]],"key_auths":[["STM56j1NsJFwMpZWyU6jsBuyYFx2dgmY5nzBqmiuqjuac79MxAKee",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"babgevtele","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1598568015},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Mna24s3BVUYRm62G7RG5SQRCYs3avw8y1cSvSqkadU4EgkToP",1]],"weight_threshold":1},"balance":{"amount":"1675366","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-08T11:21:03","curation_rewards":19761,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1010484048894","last_update_time":1594331409},"governance_vote_expiration_ts":"2022-06-01T21:34:03","hbd_balance":{"amount":"5035","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-11-11T12:47:54","hbd_seconds":"44429805","hbd_seconds_last_update":"2020-11-11T12:56:12","id":358521,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-05-03T13:46:12","last_owner_update":"2017-09-10T13:45:03","last_post":"2020-07-01T07:39:18","last_post_edit":"2020-07-01T07:39:18","last_root_post":"2020-07-01T07:39:18","last_vote_time":"2020-07-01T07:43:45","lifetime_vote_count":0,"memo_key":"STM7CoKu1MqRm3c6EDmefKCVmGcZVg3jzHCr81jwsPvEW4XukdCRW","mined":false,"name":"beekart","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM64mLD1yvvGXLvnAj9tKoMqPoTXZVSxqmhyRu2Yjhu4tiEifHrM",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3097,"post_voting_power":{"amount":"129782571304","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["busy.app",1],["dlive.app",1],["minnowbooster",1],["nextcolony",1],["steempeak.app",1],["testbed.app",1],["upbloke",1]],"key_auths":[["STM6KdwxD4Kx8YVQugUzEQEEnEMVjYEQP25vgV5cToEjNZ6p4nQn7",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3382665,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-10-23T11:04:24","savings_hbd_seconds":"95387250000","savings_hbd_seconds_last_update":"2017-11-14T13:00:09","savings_withdraw_requests":0,"to_withdraw":"3912153624276","vesting_shares":{"amount":"129782571304","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4041936195580","last_update_time":1594331409},"withdraw_routes":0,"withdrawn":"3912153624276","witnesses_voted_for":6},{"active":{"account_auths":[],"key_auths":[["STM511tpRLmSVKEuZufBTKPep96Dgs35e8sGFWp15ZhRH99GhAEKB",1]],"weight_threshold":1},"balance":{"amount":"8947183","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-10-09T15:40:21","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"9538335739696","last_update_time":1614308493},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"10722","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-08T07:58:00","hbd_seconds":"32718912111","hbd_seconds_last_update":"2021-04-21T21:00:09","id":1416632,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5Cgh3enSPZBRbzLNRJGp46dN5iPYYcTDsM6Ch9nDpnQ4HXwCnx","mined":false,"name":"beeliquid","next_vesting_withdrawal":"2021-04-23T03:02:51","owner":{"account_auths":[],"key_auths":[["STM8TtwAaNz6RpndXJydJtHvXBtU9YLRM3uzbYxHekRHWoNZvCeTR",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"18230266035706","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7wni8kpPTd4Sj1wHb12rErUWydF9GSmnJ7kNxkdobc2iyT9Bo6",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"bit4bit","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"37000000000000","vesting_shares":{"amount":"18230266035706","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"2846153846154","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"38153342958784","last_update_time":1614308493},"withdraw_routes":0,"withdrawn":"19923076923078","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8GDFm4yQsiTa4fBq6mfJjnBBL5NvgMTTRyjDu12v6TPMi1u2jq",1]],"weight_threshold":1},"balance":{"amount":"6651838","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-10T21:24:00","curation_rewards":549322,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"7922053939778","last_update_time":1610063046},"governance_vote_expiration_ts":"2022-11-06T21:38:18","hbd_balance":{"amount":"10","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-10-24T21:15:36","hbd_seconds":"0","hbd_seconds_last_update":"2020-10-24T21:15:36","id":155548,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-09-17T22:14:00","last_owner_update":"2017-10-05T20:02:21","last_post":"2020-10-17T17:13:09","last_post_edit":"2020-10-17T17:13:09","last_root_post":"2020-10-06T15:51:06","last_vote_time":"2020-10-17T17:14:33","lifetime_vote_count":0,"memo_key":"STM8KXkb48qR5StQGj5827gzpe9qJa69c2MXV2BVcxGVa3uv3jU9u","mined":false,"name":"beesteem","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8eDNfYHe9RseZwTVU6fcadjGoPBqrQhsDvya4frQVURqtLGxbN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":515,"post_voting_power":{"amount":"1071941607","nai":"@@000000037","precision":6},"posting":{"account_auths":[["hive.blog",1],["minnowbooster",1],["peakd.app",1],["smartsteem.app",1],["steemhunt.com",1]],"key_auths":[["STM7uCHmu5ARhaE4JFgyzGt9xaRjfu7uXj8ydtHsYmgEHjsSoPyvW",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":643825,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-07-22T08:18:45","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-07-22T08:18:45","savings_withdraw_requests":0,"to_withdraw":"31687143817508","vesting_shares":{"amount":"1071941607","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"31688215759115","last_update_time":1610063046},"withdraw_routes":0,"withdrawn":"31687143817508","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM5fFk5aXrq5CYE4TU8TYv1FtXZS5Eg4ryvqf6NUQtAjeuS33gMf",1]],"weight_threshold":1},"balance":{"amount":"5905376","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-04-02T15:48:42","curation_rewards":144400,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":2452382995,"last_update_time":1615373676},"governance_vote_expiration_ts":"2022-08-07T00:30:42","hbd_balance":{"amount":"953","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-10T10:08:27","hbd_seconds":"986829858","hbd_seconds_last_update":"2020-02-24T12:11:24","id":910970,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-07-01T20:57:18","last_owner_update":"2018-04-02T15:49:42","last_post":"2020-02-19T03:36:42","last_post_edit":"2020-02-19T03:36:42","last_root_post":"2020-02-19T03:36:42","last_vote_time":"2021-03-10T10:54:36","lifetime_vote_count":0,"memo_key":"STM6mrYmWk4G2f149pKdf627jCBmH2AByg6RWPWgESKFRJBepV7q5","mined":false,"name":"benl324","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7PRkvd4zRyFWfJwTDjnY8LarVSmxKLpqXrn1iAMc4QqA5M1dU3",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":158,"post_voting_power":{"amount":"9809531983","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["partiko-steemcon",1],["upvotebank",1]],"key_auths":[["STM6SFZ9tRTwHXVgfg1wmWVTmx1878oNQRBfMEHk6KDEFBuWSECmb",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":55731,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"116979628632","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"59762","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"11404099722987","vesting_shares":{"amount":"9809531983","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"9613341343","last_update_time":1615373676},"withdraw_routes":0,"withdrawn":"11404099722987","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM5WRYMUccDYgWtLe8Hr5Q2La3bpFFGhzYvrEXyJbMhyeZUeJ1HA",1]],"weight_threshold":1},"balance":{"amount":"1285745","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-11-04T12:29:24","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1478262564},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":109140,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7MXHjerSj12i3UEZ3Wzcyqts5wzHar9H7CN5Gm7kN7jE7zC8Mw","mined":false,"name":"berckleybailey","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5cJJddGHxXPN5EL37FW9hjFFLCX82SsdHvM7jgCkmkfVzXCVJF",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"118709516199","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5iB4WmBHeYgoaMozLfFUWbLCP1nZxTuEESVSBqzuQVvU5YU51f",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"118709516199","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1478262564},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5P37mPusdJh2tMXkMBX4uoxh3TWCeJ2WWpXnjq3Q42aF4svtrk",1]],"weight_threshold":1},"balance":{"amount":"2102457","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-11T23:09:21","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"5070939597","last_update_time":1601584254},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":442553,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-12-14T10:00:45","last_owner_update":"2017-12-14T10:00:45","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6Rja9o4zEuz25cQNCfXRUrCL7vreeyN1ZCowpDsxWRUtSFYJhM","mined":false,"name":"bergelmir","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6Ry67cKsrneBgZYGYSQRN9AZ11HzFjgs8jHypwK1YjcNv3hMFT",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"20283758388","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7fFsSL5HzGeBDnadegqiASZegxe4gUUGUV3sFfPuruMhh36KTF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"20283758388","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"20283758388","last_update_time":1601584254},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM68fuewPYDVEgdwUrbAdNzSRwHaa5xKQVvBon9iKMrmaeCjEfcn",1]],"weight_threshold":1},"balance":{"amount":"2182768","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-28T06:49:15","curation_rewards":2973580,"delayed_votes":[],"delegated_vesting_shares":{"amount":"4253334714359","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"121717779549","last_update_time":1619038323},"governance_vote_expiration_ts":"2022-06-17T07:25:24","hbd_balance":{"amount":"15","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-08T11:00:33","hbd_seconds":"0","hbd_seconds_last_update":"2021-03-08T11:00:33","id":39526,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-11-19T21:27:30","last_owner_update":"2020-09-21T19:32:21","last_post":"2020-09-27T15:28:03","last_post_edit":"2020-09-27T15:28:03","last_root_post":"2020-09-27T15:28:03","last_vote_time":"2021-04-21T20:52:03","lifetime_vote_count":0,"memo_key":"STM6j8pg5zD83Pu4Vprn1ag9dhDaSdYj3FSuGe8R8jynV5fLgTSJX","mined":false,"name":"bert0","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6HFKcUYuMATqBiqVL1N9AXkoU3yRBoy8PvTBi2g3kq3EeYLH5y",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":1747,"post_voting_power":{"amount":"486871118196","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1]],"key_auths":[["STM8QBXXNCZZJmcZz8oadSxRbw4wtAbCnrzcvSUK343M7Uy85DHK1",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":21497216,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"recovery.service","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"3018994989","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1593","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2018-03-01T21:32:57","savings_hbd_seconds":"34810160082","savings_hbd_seconds_last_update":"2018-03-11T10:03:54","savings_withdraw_requests":0,"to_withdraw":"27562045724900","vesting_shares":{"amount":"4740205832555","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"481227584245","last_update_time":1619038323},"withdraw_routes":0,"withdrawn":"27562045724900","witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM748iteHDrS9gNes8JnYzktjTnTEQUfTSReeF3Bo5VbefiYj116",1]],"weight_threshold":1},"balance":{"amount":"1266862","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-12T01:46:27","curation_rewards":79075,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"600923894844","last_update_time":1571551614},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"5374","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-06-18T06:15:30","hbd_seconds":"0","hbd_seconds_last_update":"2019-10-20T18:43:42","id":488768,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-09-12T00:50:15","last_owner_update":"2018-04-23T09:45:42","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2019-10-13T06:10:24","lifetime_vote_count":0,"memo_key":"STM8dFX92o17j7CC8GktoTLmrWasp9dobZTzbUC5BL5Quna8oJTQs","mined":false,"name":"bestone","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6LWrMnAMjtsa5Hwq6uSpWgXBhkKbs3stzmLURPGYCSQT1cwUa5",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1222861","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["minnowbooster",1],["smartsteem",1]],"key_auths":[["STM8L1a5kb3G89tPrFpw5C5sgscq1sw9HiW7YoVK3CjUMNg6DoYjQ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2403694356518","vesting_shares":{"amount":"1222861","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2403695579379","last_update_time":1571551614},"withdraw_routes":0,"withdrawn":"2403694356518","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5QYXnofo719YnDx89HBsgV7nhHgMWgiSDAgU16hFP6vvNSoyAc",1]],"weight_threshold":1},"balance":{"amount":"1235355","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-31T23:15:51","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":258179219,"last_update_time":1584712800},"governance_vote_expiration_ts":"2022-10-23T10:25:42","hbd_balance":{"amount":"4","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":290573,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-08-03T00:05:57","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-08-03T12:13:27","last_post_edit":"2017-08-03T12:17:36","last_root_post":"2017-08-02T23:28:42","last_vote_time":"2018-06-11T19:37:27","lifetime_vote_count":0,"memo_key":"STM6TGqSmzHf7sx8bQqLbpFMyd9GmG51MAgpyQD7GEVTM1Md78SwN","mined":false,"name":"bestself","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM63eXGMLuHLV8Dsyw48GtTgTnh5W5cbe95Ew25bLmDrGAagE7cn",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2,"post_voting_power":{"amount":"1032716874","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8i42xbiUp3f8E66Bo5mgJqnYUyZHmw7gg5doAKaxRz8M3E1XiV",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":811,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"542","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"838167702","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"406","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1032716874","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1032716874,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM5ruYuwHPBU5VkXPRCzT3wAqYZzcKh88P35Bi34qcQzAuZPJCeF",1]],"weight_threshold":1},"balance":{"amount":"3970721","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-20T01:56:21","curation_rewards":639,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1461117381},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"73","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":3620,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-07-12T10:24:39","last_post_edit":"2016-07-12T10:25:33","last_root_post":"2016-06-25T06:57:12","last_vote_time":"2016-07-12T16:18:57","lifetime_vote_count":0,"memo_key":"STM5ruYuwHPBU5VkXPRCzT3wAqYZzcKh88P35Bi34qcQzAuZPJCeF","mined":true,"name":"betax","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5ruYuwHPBU5VkXPRCzT3wAqYZzcKh88P35Bi34qcQzAuZPJCeF",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":16,"post_voting_power":{"amount":"42717","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5ruYuwHPBU5VkXPRCzT3wAqYZzcKh88P35Bi34qcQzAuZPJCeF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":644,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"8239000000000","vesting_shares":{"amount":"42717","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9949,"last_update_time":1468340337},"withdraw_routes":0,"withdrawn":"8239000000000","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5FVHERqZePmUwgJyk4C2k7AsZELCdi3t18T9fTYUmvWnKYEKSj",1]],"weight_threshold":1},"balance":{"amount":"2089990","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-04T19:28:03","curation_rewards":179557,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"872773883964","last_update_time":1584393801},"governance_vote_expiration_ts":"2022-07-13T23:01:36","hbd_balance":{"amount":"1385","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-23T19:46:30","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-23T19:46:30","id":476113,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-05-27T14:18:18","last_owner_update":"2018-01-26T16:30:06","last_post":"2018-07-09T10:24:03","last_post_edit":"2018-07-09T10:24:03","last_root_post":"2018-07-09T10:24:03","last_vote_time":"2020-03-16T21:23:21","lifetime_vote_count":0,"memo_key":"STM66h6RcqhYQq4pjmzQ2nqSAYdGAEXKpBW5uCy1ErpEiCLX5Zy7o","mined":false,"name":"betbuddha","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6YCrtN7c3xxhpAg4uQ3Sdss2Qqr4XHqjdcHTnr8mtCt81vq9U7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":198,"post_voting_power":{"amount":"227283994449","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["minnowbooster",1]],"key_auths":[["STM5Gwia2saVe1EGeADPxSp8bDLtS3xrWNK8FzSkD1bZbJSxtcC6N",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":150931,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"164474424298","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"82427","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5303693754787","vesting_shares":{"amount":"227283994449","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3421273625138","last_update_time":1584393801},"withdraw_routes":0,"withdrawn":"5303693754787","witnesses_voted_for":6},{"active":{"account_auths":[],"key_auths":[["STM5cAbeMnsN15c8MApPw49iJtAg3JkMACXNrWKoA21drydos3o4d",1]],"weight_threshold":1},"balance":{"amount":"2926878","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-14T21:19:57","curation_rewards":376331,"delayed_votes":[],"delegated_vesting_shares":{"amount":"716462092911","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"5937704088","last_update_time":1611611484},"governance_vote_expiration_ts":"2022-10-09T02:38:12","hbd_balance":{"amount":"1235","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-29T09:29:15","hbd_seconds":"2147977251","hbd_seconds_last_update":"2021-04-19T12:20:54","id":860316,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-20T22:39:24","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-09-07T14:46:42","last_post_edit":"2020-09-07T14:46:42","last_root_post":"2020-09-07T14:46:42","last_vote_time":"2021-01-25T21:51:24","lifetime_vote_count":0,"memo_key":"STM7gowij8bBmpBozWPvAqL2nwXpNpWahDdX58WSc9pqLJYXkYeMf","mined":false,"name":"bethvalverde","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM78ur6GphhnpexnuAUpxLyCETHwJ1yumQ4vAhLkVyWvskdsJdn8",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2817,"post_voting_power":{"amount":"23750816355","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["busy.app",1],["crowdini.app",1],["partiko-steemcon",1],["peakd.app",1],["share2steem.app",1],["steemauto",1],["steemax.app",1],["steempeak.app",1],["ulogs.app",1]],"key_auths":[["STM7U7cp7DdKKmLtdSB7wkSM7hdZp6YJLSDoEXJaiPQD5vsJsJCcb",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1295209,"proxied_vsf_votes":[0,0,0,0],"proxy":"davedickeyyall","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"3900837515","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2043","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"12093010803565","vesting_shares":{"amount":"740212909266","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"23275800027","last_update_time":1611611484},"withdraw_routes":0,"withdrawn":"12093010803565","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM79vBSdKaqguL3TSg12N6rhhAS3h34ktcFFRP7qryEWFwz26Tr9",1]],"weight_threshold":1},"balance":{"amount":"1357428","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-04-12T12:02:00","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1523534520},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"4","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-08-09T14:06:21","hbd_seconds":"2571696","hbd_seconds_last_update":"2018-09-04T14:41:06","id":939133,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-06-25T08:33:30","last_owner_update":"2018-06-25T08:33:30","last_post":"2018-07-17T07:57:09","last_post_edit":"2018-07-17T07:57:09","last_root_post":"2018-07-17T07:31:00","last_vote_time":"2018-08-10T05:49:57","lifetime_vote_count":0,"memo_key":"STM64bfEFo7CgefoK3C5RJhunakuYgKoNtMTW4M9aiz1AMYFAmvB2","mined":false,"name":"betmysteem","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7tA6uhaC6KVAY9CotBxyNDo4YPJ9MZY7KNgvRsSiAeN2C2JPti",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":14,"post_voting_power":{"amount":"38477780372","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6TtpGNum2xHgwr2k1LNu9PYnFzKz9sVWsuuY4X8PBm7hWjhiJJ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":77072,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"103172","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-06-05T10:49:42","savings_withdraw_requests":0,"to_withdraw":"45817913244","vesting_shares":{"amount":"38477780372","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1533880197},"withdraw_routes":0,"withdrawn":"45817913244","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5dVBuGTjWT65uAAaBYrjxFCLWkV2d4bk4b7gaeWnaoN6fq2H6B",1]],"weight_threshold":1},"balance":{"amount":"2105497","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-25T04:53:12","curation_rewards":1496732,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2721432877383","last_update_time":1619038626},"governance_vote_expiration_ts":"2022-06-05T09:17:30","hbd_balance":{"amount":"4340","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-01T06:07:06","hbd_seconds":"3758199426","hbd_seconds_last_update":"2021-04-21T15:05:18","id":280891,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-12-11T11:48:24","last_owner_update":"2017-10-10T13:01:54","last_post":"2021-04-21T15:14:27","last_post_edit":"2021-04-21T15:14:27","last_root_post":"2021-04-19T07:04:18","last_vote_time":"2021-04-21T20:57:06","lifetime_vote_count":0,"memo_key":"STM8CdcYJtbfpMK3MxauRGZBgNbwvrS37NS1saYcnBW9ZFa5FuZFW","mined":false,"name":"betterthanhome","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM872nqDCHqrBptG9VDqNYPZqodsSBmZ8Z34WPtBRVvFHM6AYtgq",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":9410,"post_voting_power":{"amount":"10885731509534","nai":"@@000000037","precision":6},"posting":{"account_auths":[["esteemapp",1],["leofinance",1],["peakd.app",1],["steemauto",1],["steemhunt.com",1],["steempeak.app",1],["travelfeed.app",1]],"key_auths":[["STM7C1b818dFRTMJKHheARj6LucGeCRdRQvdpZ9dNruBYCNkbyHZM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":8693556,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"nomadlifestyle","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"455642005","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"241","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"10885731509534","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"6501888190753","last_update_time":1619038626},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":26},{"active":{"account_auths":[],"key_auths":[["STM56STM3kHVXhaKHBUkZqdzivYLQJDLfvtVEeTeH3oaT8TKcauax",1]],"weight_threshold":1},"balance":{"amount":"3215187","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-04T06:10:06","curation_rewards":2116956,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1858608571944","last_update_time":1619038767},"governance_vote_expiration_ts":"2022-11-04T07:04:27","hbd_balance":{"amount":"8","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-28T02:59:27","hbd_seconds":"12754200","hbd_seconds_last_update":"2021-04-21T20:59:27","id":556904,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-29T20:49:36","last_owner_update":"2020-02-28T12:59:18","last_post":"2020-05-07T15:02:45","last_post_edit":"2020-05-07T15:02:45","last_root_post":"2020-05-07T02:45:12","last_vote_time":"2021-04-21T20:57:12","lifetime_vote_count":0,"memo_key":"STM6jtwrEuhrC3z5yVjmeUBuduYCkTKnPjHFoo4T1TzuKGZ89PhUQ","mined":false,"name":"beverages","next_vesting_withdrawal":"2021-04-26T20:27:33","owner":{"account_auths":[],"key_auths":[["STM59DGvEVMfQ3xz8VRokUyFKcNoQ3kyyBzhuof7pkPm3JECaEoPZ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":761,"post_voting_power":{"amount":"8955505034350","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dlike.app",1],["dpoll.xyz",1],["minnowbooster",1],["peakd.app",1],["smartsteem",1],["smartsteem.app",1],["steemauto",1],["steempeak.app",1]],"key_auths":[["STM7yMHbQFyympBdEcWJZPGodgPSd5snDa241Ax1bscpm35BW1s26",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":119571,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"19773919705417","vesting_shares":{"amount":"8955505034350","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1521070746571","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"6302939068791","last_update_time":1619038767},"withdraw_routes":0,"withdrawn":"13689636719139","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM6uobgL5hfKf9sKC7SfNSTz1HLGsW13gQzXf1pw4FpkxNEDt5H9",1]],"weight_threshold":1},"balance":{"amount":"6902783","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-10-21T20:35:03","curation_rewards":141742,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2850676542911","last_update_time":1586392134},"governance_vote_expiration_ts":"2022-08-14T11:52:21","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-08-28T03:03:57","hbd_seconds":"0","hbd_seconds_last_update":"2020-04-09T00:28:54","id":1158396,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-12-22T03:59:06","last_owner_update":"2018-10-21T21:19:33","last_post":"2020-04-02T03:34:42","last_post_edit":"2020-04-02T03:34:42","last_root_post":"2020-04-02T03:34:42","last_vote_time":"2020-04-07T19:10:33","lifetime_vote_count":0,"memo_key":"STM7aJ4NSXBsvsdg6tLr5UXnsvqYCcSVh5u2uNmCkBHif6sWk3mP2","mined":false,"name":"bewarecenterbase","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7PG23DouX2aZdrqoiHMYkMF4LCLDChMu1XMuQBzdRPmpag1dJC",1]],"weight_threshold":1},"pending_claimed_accounts":53,"pending_transfers":0,"post_bandwidth":0,"post_count":10790,"post_voting_power":{"amount":"36568267379","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["buildteam",1],["busy.app",1],["dclick.app",1],["dpoll.xyz",1],["engrave.app",1],["steempeak.app",1],["tasteem.app",1],["threespeak",1],["wonsama.quiz",1]],"key_auths":[["STM6yrFHwyn2RCkeNqDce61GLuzdPGG2bNK9uJNGmDeuzUE5PWdKP",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":415895,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steamsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"10946021522","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"5598","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"13432708432319","vesting_shares":{"amount":"36568267379","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"11402706171648","last_update_time":1586392134},"withdraw_routes":0,"withdrawn":"13432708432319","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM7Za4YLxQ2A9bRZxE1tsM59FscS69UMoY5bK1R5QwNvra81YAwN",1]],"weight_threshold":1},"balance":{"amount":"1752034","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-12T16:33:36","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":256393824,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":490985,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6CGyxNGARZ1Y8yyEuDMiUnzX98PkadT5hiQvAyaAg8tmZk544P","mined":false,"name":"beyazib","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4uT2N3J5UCQgUG6B1j8utqCGTaRKAi1LUjbCZeuCy3hSR6mKGb",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1025575296","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8Hgx47oN8FwJ3Ess1JFEHVoYoigQZZp5PGXNJULPaJXP8XY8Ja",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1025575296","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1025575296,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM4yUESXtQkxMN8YKQ3AidivfgWhty4gXyMVBCjNMTBHTpXxdGt1",1]],"weight_threshold":1},"balance":{"amount":"13002791","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-16T10:33:30","curation_rewards":32153619,"delayed_votes":[],"delegated_vesting_shares":{"amount":"632554716000000","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"7627964090664","last_update_time":1619037837},"governance_vote_expiration_ts":"2022-11-04T05:15:36","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-04-21T19:49:39","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-13T14:48:45","id":2384,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-11-19T22:54:39","last_owner_update":"2016-05-31T12:50:54","last_post":"2019-09-13T12:10:42","last_post_edit":"2019-09-13T12:10:42","last_root_post":"2017-09-06T13:28:12","last_vote_time":"2020-06-01T19:07:24","lifetime_vote_count":0,"memo_key":"STM6wBKxnbWVHzeZqJu6curhhH3nkPWy1JFGSTUNCzs4nn8yPUWqS","mined":true,"name":"bhuz","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6eD54YsyggWtAHEULWpgg4K5BKqJWRtHRLhb9C2iLBEtDb4Uco",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":63,"post_voting_power":{"amount":"30511856362657","nai":"@@000000037","precision":6},"posting":{"account_auths":[["ginovotino",1]],"key_auths":[["STM4w8kjpDa51dQiXe7p7CBqFHKNL2uSD798GyeEt5bMGueaWS1JM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2287043,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2016-12-09T21:38:21","savings_hbd_seconds":"1350918","savings_hbd_seconds_last_update":"2016-12-09T21:41:27","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"663066572362657","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"30511856362657","last_update_time":1619037837},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":27},{"active":{"account_auths":[],"key_auths":[["STM643GKkmgMkFnW5fFLPuULbcdpPGZeSDhX5HhStDFk98RXLVMWT",1]],"weight_threshold":1},"balance":{"amount":"2387600","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-06-25T19:11:36","curation_rewards":10,"delayed_votes":[],"delegated_vesting_shares":{"amount":"76687403495","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4829040347","last_update_time":1614068229},"governance_vote_expiration_ts":"2022-06-10T19:18:57","hbd_balance":{"amount":"846","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-11-05T22:20:42","hbd_seconds":"0","hbd_seconds_last_update":"2020-11-29T21:01:12","id":1288382,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-17T20:40:21","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-07-24T12:03:27","last_post_edit":"2020-07-24T12:03:27","last_root_post":"2020-05-08T07:50:27","last_vote_time":"2021-01-17T23:01:06","lifetime_vote_count":0,"memo_key":"STM8eCbxhHxutKgB69phW449G9YyfAqaJvDEDNYLYJiGbhkRRg9mb","mined":false,"name":"bibdieufr","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7u8Y9jtvimbZHNbkVa58REh4iaEATQCsyvYTN2Z5FovaM2BBkB",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4,"post_voting_power":{"amount":"19316161391","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakmonsters.app",1],["piggy-bubba",1],["steemauto",1]],"key_auths":[["STM6pppcK91RUKibGAC85NNNsUHz5vQ3Kv7FR1DMqo6EBywb9bimi",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":295,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steemmonsters","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1909885","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2020-11-26T21:01:12","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2020-11-26T21:01:12","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"96003564886","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"19316161391","last_update_time":1614068229},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM6B6ztyQ4rXZNn61y8vJRuoMfDXrUGAxdB8M4xcvbYVFokBAgbM",1]],"weight_threshold":1},"balance":{"amount":"101462017","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-03T22:34:45","curation_rewards":61,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"57869203341","last_update_time":1612709790},"governance_vote_expiration_ts":"2022-09-04T05:57:27","hbd_balance":{"amount":"43240","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-12T14:40:48","hbd_seconds":"0","hbd_seconds_last_update":"2021-04-12T14:40:48","id":393699,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-04-30T23:00:12","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-08-08T21:03:00","last_post_edit":"2019-08-08T21:03:00","last_root_post":"2019-08-08T21:03:00","last_vote_time":"2021-02-07T14:56:30","lifetime_vote_count":0,"memo_key":"STM4u2yxx9Bjv8gVpYhvJKfi2EtaR5bJufBNWQ4V3WAsvQbtbktFw","mined":false,"name":"bigbanginfinity","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5bygFhUWJesv2KTpxCmmH8CFbJVkeRqzzdEicEejhkM2BD2fG5",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":10,"post_voting_power":{"amount":"231476813367","nai":"@@000000037","precision":6},"posting":{"account_auths":[["anarcist-dev",1],["flowblog",1],["liketuapp",1]],"key_auths":[["STM5iy6whrYsxs2iU69xSZqDoVe2DjUktdWCfZjs1N4aMa2secMka",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":24,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1901761","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"231476813367","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"226847277099","last_update_time":1612709790},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM6pf4Vd9YzRHHRNJYrQpTBfK1tzphXWQgh3hYwRBvvYwsJxMBJv",1]],"weight_threshold":1},"balance":{"amount":"11681401","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-14T18:37:24","curation_rewards":715943,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"7707301528","last_update_time":1584708183},"governance_vote_expiration_ts":"2022-10-27T00:33:33","hbd_balance":{"amount":"58021","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-12-29T11:00:03","hbd_seconds":"125325360000","hbd_seconds_last_update":"2020-01-23T11:00:03","id":261326,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-10-08T23:20:09","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-10-09T02:35:45","last_post_edit":"2019-10-09T02:35:45","last_root_post":"2019-10-09T01:33:06","last_vote_time":"2020-03-20T12:43:03","lifetime_vote_count":0,"memo_key":"STM6D8x3VyVeqGJB9QeY1zvrTqvRpJ4rx4p5uXwvpect6gWxggkhf","mined":false,"name":"bigdeej","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7MCvnK3RyKh1VN4BehFE7jnNrda1Y66nKzZPHJ8DrBSGci7EEt",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2311,"post_voting_power":{"amount":"30829206112","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM58WYLRYtqEwVdjQvnyscDKtbv9pmZEUpsdMQjeC5HCFEmydsVT",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2385264,"proxied_vsf_votes":[0,0,0,0],"proxy":"shadowbot","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"22990228314223","vesting_shares":{"amount":"30829206112","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"30212621989","last_update_time":1584708183},"withdraw_routes":0,"withdrawn":"22990228314223","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5eUubh8GVYQinEWJJzZ5j3XW1BrkekkLDS8Sp1TAqkXoiAt6DJ",1]],"weight_threshold":1},"balance":{"amount":"2587741","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-02-17T03:18:51","curation_rewards":23958,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1077675968749","last_update_time":1618000872},"governance_vote_expiration_ts":"2022-08-27T04:35:30","hbd_balance":{"amount":"2596","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-09T20:41:12","hbd_seconds":"0","hbd_seconds_last_update":"2021-04-09T20:41:12","id":1365770,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-14T09:38:33","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-09-10T07:53:33","last_post_edit":"2020-09-10T07:53:33","last_root_post":"2020-09-06T03:51:03","last_vote_time":"2020-09-15T11:27:48","lifetime_vote_count":0,"memo_key":"STM74A4HkTxTumMXTAufe3vwm9P3Fadnu8byC4VfoSxS1UZQravAV","mined":false,"name":"biggypauls","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6XmBSKzBt9ofQ2PzJvzNDWAyMYqSCsptaz5V6m57XfgKFC6QFQ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2153,"post_voting_power":{"amount":"4310703874996","nai":"@@000000037","precision":6},"posting":{"account_auths":[["hive.blog",1],["peakd.app",1],["threespeak",1]],"key_auths":[["STM5ftcu2BSnL44pwSiDw6BcJ6VGQPi2TAY9hHfYSphfCQaXoAPQ6",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3859166,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"scubahead","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"4310703874996","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4310703874996","last_update_time":1618000872},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":4},{"active":{"account_auths":[],"key_auths":[["STM6gWLHEAa6e8AvU3nvwyXxjhovd5BZLmUfcNuXa1SKdxv1M9JTm",1]],"weight_threshold":1},"balance":{"amount":"7174570","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-10T14:19:57","curation_rewards":237022,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2704415011246","last_update_time":1567258947},"governance_vote_expiration_ts":"2022-06-28T01:33:15","hbd_balance":{"amount":"476","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-07-17T23:43:24","hbd_seconds":"572192067","hbd_seconds_last_update":"2019-08-14T19:02:42","id":253267,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-02-21T20:36:45","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-05-21T12:27:33","last_post_edit":"2019-10-09T15:58:48","last_root_post":"2019-03-12T15:31:51","last_vote_time":"2019-08-02T18:22:48","lifetime_vote_count":0,"memo_key":"STM7U2oAgickydKb31Fx1JDjhQRn2nUE1nird85rpKTfKaKJDywVS","mined":false,"name":"bigpanda","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7Z1VRRWWZCmAhyYki5wJmVLar6WgB5P7YnQpM1S8VCds4Z3wvK",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3200,"post_voting_power":{"amount":"549502651688","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dpoll.xyz",1],["drugwars.app",1],["dtube.app",1],["partiko-steemcon",1],["steemhunt.com",1],["streemian",1]],"key_auths":[["STM7tXNH2U6hoDFo7PLsMMntdBaMTFtUfDWcaratVVVnpBokLRiMR",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":4968962,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"10268157393301","vesting_shares":{"amount":"549502651688","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"10817660044989","last_update_time":1567258947},"withdraw_routes":0,"withdrawn":"10268157393301","witnesses_voted_for":10},{"active":{"account_auths":[],"key_auths":[["STM7WQSqeTPf1LwacRBMMJuPeoiCbFB3JcSS7CmSfTYLSdT9U1wid",1]],"weight_threshold":1},"balance":{"amount":"2313149","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-23T01:46:48","curation_rewards":6804079,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6488549018977","last_update_time":1619038812},"governance_vote_expiration_ts":"2022-08-01T04:46:24","hbd_balance":{"amount":"9163","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-02T06:00:12","hbd_seconds":"8604903405","hbd_seconds_last_update":"2021-04-21T21:00:12","id":167651,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-01-23T02:50:33","last_owner_update":"2019-10-16T17:23:36","last_post":"2021-04-21T03:22:54","last_post_edit":"2021-04-21T03:22:54","last_root_post":"2021-04-21T03:22:54","last_vote_time":"2021-04-21T19:39:06","lifetime_vote_count":0,"memo_key":"STM6ctb6Jkv6uFkHcL46sRweAcRiZ2j72ardpJZVpksVvETCvp47g","mined":false,"name":"bigram13","next_vesting_withdrawal":"2021-04-28T12:38:00","owner":{"account_auths":[],"key_auths":[["STM8ZQ17HHHaXp4z12aEQmweoB2mAiCkWD5dbNUgT5Kt3hAos92K9",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3966,"post_voting_power":{"amount":"30145791434323","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["hive.blog",1],["leofinance",1],["steemauto",1]],"key_auths":[["STM5vazHYa3NXufSx4nFFVpurdknHsgaRM3gsx24rFE2uo7WaAqgm",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":25837966,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"54490739659337","vesting_shares":{"amount":"30145791434323","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"4191595358411","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"24888890779446","last_update_time":1619038812},"withdraw_routes":0,"withdrawn":"25149572150466","witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM7VLBSg61LDJzq1JGycezJvtbAj7R6QFhELEXi7ULJZhnUini9c",1]],"weight_threshold":1},"balance":{"amount":"2011996","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-05-13T05:42:21","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":50880529,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":994382,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7cQNcWc1pTGhKuzFNPeYWzqwd5DwrofX6yZ3gmyub7ddYd17E2","mined":false,"name":"bilal1064","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6eMsd1wyWP2vYScBLEP6jmv8H7GuSHpLxTZZUzyH8azvd1mgGa",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"203522116","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM4uMR6sZFSiGLyv3Ffv5EdU1DSxAdZ3WCon3gBhQ61Bwd1CZBkM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"203522116","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":203522116,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8TdfUdUiqMtbGzwzQaA6XA67z3MZLoja1gTqS1GCeKN69f4CfL",1]],"weight_threshold":1},"balance":{"amount":"13559685","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-04T15:46:48","curation_rewards":2559816,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"550676703369","last_update_time":1583260683},"governance_vote_expiration_ts":"2022-08-10T11:51:12","hbd_balance":{"amount":"189019","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-23T19:37:36","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-23T19:37:36","id":10929,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-11-05T01:11:06","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-09-24T20:22:33","last_post_edit":"2018-09-24T20:22:42","last_root_post":"2018-08-26T22:11:30","last_vote_time":"2020-03-03T18:38:03","lifetime_vote_count":0,"memo_key":"STM5DwSzSFtJDmaYwyehymxbA78KCSirr5dPw6XytaUBUEVSRYsqw","mined":false,"name":"billbutler","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM65951z4pXGcCYqMxKgtzCgisXYj2EQEMh7EnDoV5qrF56NUZHK",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":651,"post_voting_power":{"amount":"2202706813476","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["minnowbooster",1],["steemiz.app",1],["utopian.app",1]],"key_auths":[["STM6j3UfTJnsaJYox9rn2zUWmfBMPU9BaqfFW1MPjhcpwafcCJ3om",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":11246860,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"3173856828","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1608","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"47968380854073","vesting_shares":{"amount":"2202706813476","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2158652677206","last_update_time":1583260683},"withdraw_routes":0,"withdrawn":"47968380854073","witnesses_voted_for":12},{"active":{"account_auths":[],"key_auths":[["STM6BoZmJoUQAaf6JsLv4HAJddUrwWyBq8LAnCeMkwujzGtThQK51",1]],"weight_threshold":1},"balance":{"amount":"4311948","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-05T22:56:36","curation_rewards":39142,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1496703396},"governance_vote_expiration_ts":"2022-07-11T03:38:09","hbd_balance":{"amount":"4","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-05-13T12:21:03","hbd_seconds":"0","hbd_seconds_last_update":"2019-05-13T12:21:03","id":180949,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-06-08T09:43:12","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-11-30T05:18:00","last_post_edit":"2017-11-30T05:18:00","last_root_post":"2017-06-21T04:29:24","last_vote_time":"2019-08-03T15:07:36","lifetime_vote_count":0,"memo_key":"STM749yf6He4hoiBCuNgHgfgJnukMwpyLKJdx7UZd2pa4CBSwz5G5","mined":false,"name":"billroth","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5nYWzREjAiQjWqVAmiioRKybTmxLQQnam8ebiNaEgy76wWLC5V",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":269,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM51kJNSCsZc5b1ddiScqEtqVPRpSCdyEzC2bKk3b2XfR3oM3c6q",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":160561,"proxied_vsf_votes":[0,0,0,0],"proxy":"clayop","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"7939860","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"4","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"8576862074571","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"633901581170","last_update_time":1564844856},"withdraw_routes":0,"withdrawn":"8576862074571","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Jo3r8Quizt6m36psdpigWCpYXqo5T6PyTnquvzag2LTb2oSCK",1]],"weight_threshold":1},"balance":{"amount":"1398315","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-25T01:46:36","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1503625596},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":332977,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-09-16T07:51:36","last_owner_update":"2018-09-16T07:51:36","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5H2sByC8XE719Cx7oHUUuJuz5YTvjzRiwCZn1zhWTq7sifycug","mined":false,"name":"binance","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6W8WZsSdWypM33t7ENrbatS2qeCGXq7EFvakcsQ5MLqcBBWBXr",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"51616888913","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7ywLPiujBMR6dBdGwpb2oXDry18DG84FwWwsEP2E7KRgnrG2Em",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anon-steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"12376836970","vesting_shares":{"amount":"51616888913","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1503625596},"withdraw_routes":0,"withdrawn":"12376836970","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7hcWevRaKrgeZRTYVokfGAh8GvqqnASCcC3KKu81qmMXVBzDrE",1]],"weight_threshold":1},"balance":{"amount":"55296591125","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-31T03:46:00","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"144878257079","last_update_time":1615696659},"governance_vote_expiration_ts":"2022-10-04T14:56:36","hbd_balance":{"amount":"3732","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-07T20:09:12","hbd_seconds":"213831459","hbd_seconds_last_update":"2020-03-08T12:04:27","id":701861,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6yd1kyeJh61FRL6YeaLhApDwpZSdhcShKxJE7Qe86RABJmoih2","mined":false,"name":"binance-hot","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6KCTd7srnaX7SmujwqoZLrYj5WrLTCmTXATf9m8Mjtij36SUrc",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"579513028314","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6MotFx2JVL93qnyPDoa2W3iafkSGTFBcddAzKk3fwbbSVu9CJC",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"384849720221","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"62195759395817084","vesting_shares":{"amount":"194663308093","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"579513028314","last_update_time":1615696659},"withdraw_routes":0,"withdrawn":"62195759395817084","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5aJADkJcsX1KryMWe1TN5826k2kLHVXKD5AQDNr25q1Vpr3aUg",1]],"weight_threshold":1},"balance":{"amount":"6792263","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-09-19T09:09:48","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1568884188},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1320433,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7zqdFpNuRNZEGnLwjggEmVVtt1NVCQzH87mrGvNeTMZy3UqBfF","mined":false,"name":"binance6","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM83kryruTJRXLTFg9eVkNvHcQa93fQzwJ1NwuUnYCwQPYodBz1A",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5FR8kS1bnV5N26fT9xFFKXCsrH93xziPMN5zds961h1J6r1P44",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steemwallet.born","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1568884188},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7goqiMrjtYSreeYipx9sdqm7ZuRNFGrkgYjmTHa1U1TZZCF8wN",1]],"weight_threshold":1},"balance":{"amount":"2777788","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-21T18:41:30","curation_rewards":227579,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2302532474933","last_update_time":1618942953},"governance_vote_expiration_ts":"2022-10-05T06:34:36","hbd_balance":{"amount":"106582","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-21T05:55:54","hbd_seconds":"134236559616","hbd_seconds_last_update":"2021-04-04T19:47:39","id":773173,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-17T17:37:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-01-29T19:11:27","last_post_edit":"2021-01-29T19:11:27","last_root_post":"2020-07-04T22:07:33","last_vote_time":"2021-04-20T18:22:33","lifetime_vote_count":0,"memo_key":"STM6VwZCVAL5s5kSR7swb1PtJhJKdAR2kDU1e4vrc8QC1YjkTj1PZ","mined":false,"name":"birdsinparadise","next_vesting_withdrawal":"2021-04-27T16:23:15","owner":{"account_auths":[],"key_auths":[["STM7v4LCiZLGvZTVXvusZ1oA5Xpjd7KBRKuc1hB8aT8ZbYPuq4vVQ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":8691,"post_voting_power":{"amount":"9795068881986","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dlive.app",1],["dpoll.xyz",1],["dtube.app",1],["hive.blog",1],["peakd.app",1],["steemauto",1],["steempeak.app",1]],"key_auths":[["STM5oyxhACZhiCkiorJMJN5bh1marBq6kNYxVQHyT8osmZ6mteAMv",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3255889,"proxied_vsf_votes":[0,0,0,0],"proxy":"theycallmedan","received_vesting_shares":{"amount":"108200000000","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"17869597866","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"9425","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"7604206769285","vesting_shares":{"amount":"9686868881986","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"584938982253","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"9136448860535","last_update_time":1618942953},"withdraw_routes":0,"withdrawn":"5264450840277","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8GxDTaMAZe7DE3SxxxDX4HciJZawpM1vgzv2fwWGSnErxGuhX2",1]],"weight_threshold":1},"balance":{"amount":"1356731","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-04T02:31:15","curation_rewards":216868,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"377489817805","last_update_time":1584701568},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"444","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-07T12:34:54","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-07T12:34:54","id":394454,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-10-10T00:21:30","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-09-24T02:16:45","last_post_edit":"2019-09-24T02:16:45","last_root_post":"2019-09-24T02:16:45","last_vote_time":"2020-03-20T10:52:48","lifetime_vote_count":0,"memo_key":"STM6Tg4TqpD9LvRZzoMRGr5ivRjpjvw9NxrVuh1eBvLSHpdLjK5hC","mined":false,"name":"bitbulls","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM89dDiSkrAicPrXbJz34S21XrpmAxhoPc4ayXAM83SbsrVKYhSC",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":583,"post_voting_power":{"amount":"35695478019","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6UpbD4ru5qtmPatGVSVNmFaKYunYeT8AMxTmbxyGCNjiBiiBWS",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":341076,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"7574462890","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"3867","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3833085862337","vesting_shares":{"amount":"35695478019","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1295113242381","last_update_time":1584701568},"withdraw_routes":0,"withdrawn":"3833085862337","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM52ozJ5nHSjDdqGpaxuj1fYv2wEL3WtfMCJGnBcK4go98CoLhGo",1]],"weight_threshold":1},"balance":{"amount":"14148814","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-14T02:36:45","curation_rewards":721922,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"331652472720","last_update_time":1586217468},"governance_vote_expiration_ts":"2022-07-03T11:27:18","hbd_balance":{"amount":"4016","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-04-06T23:57:48","hbd_seconds":"0","hbd_seconds_last_update":"2020-04-06T23:57:48","id":21541,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-06T23:56:30","last_owner_update":"2020-04-06T23:56:30","last_post":"2018-04-02T05:26:30","last_post_edit":"2018-04-02T05:26:30","last_root_post":"2017-10-02T20:32:33","last_vote_time":"2018-10-31T03:47:51","lifetime_vote_count":0,"memo_key":"STM4yY2YCAimvUAHvWxiEdZGHyMSYE2hJuqvkhum4JABg3QT28HAJ","mined":false,"name":"bitcoiner","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7mpdqbwSoNmzSK26AxsK3fFpQhwDLSgf9QkwMKQ8R6eux3GCoL",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":1492,"post_voting_power":{"amount":"1326609890881","nai":"@@000000037","precision":6},"posting":{"account_auths":[["streemian",1]],"key_auths":[["STM7sVvQZBNd9MHy2NC5cvYqH21XtCTXm13Whak8svPaHUcC1baHM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5283237,"proxied_vsf_votes":[18371156,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"42473427965275","vesting_shares":{"amount":"1326609890881","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1326609890881","last_update_time":1586217468},"withdraw_routes":0,"withdrawn":"42473427965275","witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM7RmSnHDFX9kg95wV88mjiS2PFSiz4dDbQq17RF3r1HQxFoNs1X",1]],"weight_threshold":1},"balance":{"amount":"1615938","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-16T17:42:24","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1510854144},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"94458","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-10-24T23:44:24","hbd_seconds":"7161222648","hbd_seconds_last_update":"2018-10-25T18:47:00","id":451123,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-03-17T00:31:36","last_owner_update":"2018-03-12T01:01:36","last_post":"2018-10-25T18:43:54","last_post_edit":"2018-10-25T18:44:15","last_root_post":"2018-10-25T18:40:03","last_vote_time":"2019-05-29T14:01:51","lifetime_vote_count":0,"memo_key":"STM7xxZpmp2W5tXiCiDHkcfLmeiXVLo8ZMiSUB73M9AVmV6d3qsWL","mined":false,"name":"bitcoinhomework","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM849Da27h2KCG2SMV7Yo8ZMofxG99YrVE1VerhYBXPdntkASARx",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":12,"post_voting_power":{"amount":"45453696382","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["drugwars.app",1]],"key_auths":[["STM5KrD8tRHdyD58Fwb77vLTQv6tCTTkgXtZJeTzeM1hMVgcrsLLA",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"45453696382","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"44544622454","last_update_time":1559138511},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM79N4X7su6AYQH7Ht3HCRbSQYDLpH6Wiss6aoWjqH1R5KjkYkWn",1]],"weight_threshold":1},"balance":{"amount":"2978742","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-25T21:03:30","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":257839851,"last_update_time":1584712800},"governance_vote_expiration_ts":"2022-06-19T04:57:39","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":334003,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-01-29T00:20:45","last_post_edit":"2018-01-29T00:20:45","last_root_post":"2018-01-29T00:20:45","last_vote_time":"2018-01-29T00:21:30","lifetime_vote_count":0,"memo_key":"STM7DxWePgvkzqwEop42xFhmcfpyGj6QrvVDpCn33AuhXcbopUPk9","mined":false,"name":"bitcointrader55","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8fayDeAoiwnN5KKHixAbm6jy9dYAvQjFN4ox5WYqiBgLHWP6my",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":8,"post_voting_power":{"amount":"1031359404","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7BK3Kt3kHtFcswqaC5sfEwUENebEZmQsAqSuJQCwDkdppxuMN8",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1031359404","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1031359404,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM6jMuhceWX7gm3GU8cHVMewWwmTe99mStkh19fhVXn3GaVMZAom",1]],"weight_threshold":1},"balance":{"amount":"1777105","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-19T19:35:03","curation_rewards":20036,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"750136114988","last_update_time":1571596716},"governance_vote_expiration_ts":"2022-08-19T06:53:03","hbd_balance":{"amount":"7741","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-08-28T19:19:21","hbd_seconds":"18318051729","hbd_seconds_last_update":"2019-09-25T19:19:18","id":206861,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-03-23T18:53:54","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-03-27T16:52:27","last_post_edit":"2019-03-27T16:52:27","last_root_post":"2018-05-03T19:44:42","last_vote_time":"2019-03-27T16:51:18","lifetime_vote_count":0,"memo_key":"STM5vQp4JnSJdFG3BwUF9ht7fmBEnV4B71pS7fKBQdAacuShPr2T8","mined":false,"name":"bitdollar","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6PtAUt7dknsBcny87B8RWv4yTdSaEufHo9FVJoFV3o3k5RXuSe",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":5715,"post_voting_power":{"amount":"9858207240","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1]],"key_auths":[["STM7TMx53jyQV2VJUq8vtf6SEadLBQD3sJZCUJJ5E5vCgtH6ZkbbN",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1047777,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2990686252713","vesting_shares":{"amount":"9858207240","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3000544459953","last_update_time":1571596716},"withdraw_routes":0,"withdrawn":"2990686252713","witnesses_voted_for":2},{"active":{"account_auths":[],"key_auths":[["STM6X7THji2AK1jPpaugGbCAnBLeuBW8Avy6u4QbBp1NaxcFazkzL",1]],"weight_threshold":1},"balance":{"amount":"3274756","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-04-10T17:54:27","curation_rewards":7,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":108022146,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"274","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-08-25T04:26:39","id":925553,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-09-11T21:12:39","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-08-26T15:04:03","last_post_edit":"2018-08-26T15:04:03","last_root_post":"2018-08-26T15:04:03","last_vote_time":"2018-08-25T16:58:18","lifetime_vote_count":0,"memo_key":"STM7twcrdGsTxE5p7uhZMChCYpqDTZPdnoBeowvEH49edEsZh6J7h","mined":false,"name":"bitgenstein","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM76jr6XZZMiCvgv7UUdejXdFqk4fNAcPzsnKJMgjW2mtCPX6UUZ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":15,"post_voting_power":{"amount":"432088582","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dtube.app",1],["peakd.app",1]],"key_auths":[["STM6FJ38Rz6dKGJpw5urb58WE9ST62jZZhZ3mu4GVbYNbNVzg6RPU",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1038,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"411","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"845742666","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"418","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"432088582","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":432088582,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM78rBsxpMpA3VfbWMDEQZMFTV1gYbfuyYLctzjoZB8JfnUu8RC7",1]],"weight_threshold":1},"balance":{"amount":"2033936","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-12-04T13:29:45","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"985279248305","last_update_time":1575468726},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2177","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2020-01-19T08:37:36","id":1344408,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8eRf5yXFFoZvTUtawv76g9NLU5vS1uCSTdynnyQ8WLdHSLwa4p","mined":false,"name":"bithumbrecv1","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6WqTuSifVQNE1ggECdqby79BrRiH8fw2Qy4LqtKvwPTQDt9WzA",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"3941116993221","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6513F4akGHk5yPZCJUBH7kh1LMmRLv3AS5YT9wvsrkbP7MxCqB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"rap7tq6vu58ujg","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"3941116993221","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3941116993221","last_update_time":1575468726},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM53PFNKS9qtYFno6FnQSFeHvpZWJK9XCstTPw2EwzqgVQtkUkEE",1]],"weight_threshold":1},"balance":{"amount":"1338163696","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-05-27T08:00:12","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"974087736349","last_update_time":1590566673},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1385879,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5nahksbQkMKcvX5JysfC4X1Bi8Mtg5t7HxctPaqpCSGqcLecbA","mined":false,"name":"bithumbsend2","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4xtjBvyydqbwzuFNgASGnj1SuupdftgQuyrHePojwYJ3U2QPTn",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"3896350945398","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5dabz5zgpBNtN9mizmTx4dudJ4LQZg5rafzYWrZgj5LNyWJAjT",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"bt20hivedkdnel","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"3896350945398","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3896350945398","last_update_time":1590566673},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5ySvj5iJhrdva9nw5h4BF42fi7pfGBdGW9rJsdnRtDY17kCEDx",1]],"weight_threshold":1},"balance":{"amount":"36501796","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-15T08:35:45","curation_rewards":150611,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":1072267921,"last_update_time":1617737169},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"103456","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-01-19T10:22:06","hbd_seconds":"0","hbd_seconds_last_update":"2021-01-19T10:22:06","id":8636,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-23T07:08:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-06T19:25:18","last_post_edit":"2021-04-06T19:25:18","last_root_post":"2021-04-06T19:25:18","last_vote_time":"2021-04-06T19:26:09","lifetime_vote_count":0,"memo_key":"STM7h3KJAmPGGSGV1BnwcfEayiF3zczwC7NNeXfdT9EGQSiY267k1","mined":false,"name":"bitsignal","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6YB1BZZ9vndBJTYgKgSQx2386qGGFkmMHWECh1ZTyTN7sDHMay",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":757,"post_voting_power":{"amount":"4289071684","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dlive.app",1],["partiko-steemcon",1],["peakd.app",1],["smartsteem",1],["steeve.app",1],["threespeak",1]],"key_auths":[["STM7pKw7qR4PzpTYpgrpmRpH3kZBBVLdNHqRVobqS2eRhro2fBBw2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2161017,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"112","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"658922178","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"347","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"62895698685494","vesting_shares":{"amount":"4289071684","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":4203290250,"last_update_time":1617737169},"withdraw_routes":0,"withdrawn":"62895698685494","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8g1uyNFHFmnY2p4ktSp8idiEVnKYmd71LDCbACGmnfs7ZCzFXr",1]],"weight_threshold":1},"balance":{"amount":"2649838","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-16T01:32:18","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":354318781,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"187","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":410261,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-10-18T02:31:36","last_post_edit":"2017-10-18T02:31:36","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-10-31T23:20:30","lifetime_vote_count":0,"memo_key":"STM8YxLTZGASfahoRi7KBsHbEu4GAD9ij5Df5Lvz9bnWYbJY6sG5C","mined":false,"name":"bitsnpieces","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8mrtxtpEkSh5Y3etFVyPWYE6ZW5qyCLF1qcKNc8v8hPSYh8LYZ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4,"post_voting_power":{"amount":"1417275123","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5yK5HaCu9d3hxyMS58aMbi9DgNGFnwYSczyxfe3nyLrGPiEnqF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":377,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1417275123","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1417275123,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8ZeL3s5Qt4RtJ7KUpzpN5PkkCSgSy4GFQGdb8bFCx7HQZDEE5H",1]],"weight_threshold":1},"balance":{"amount":"1183975","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-24T08:03:03","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1461484983},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2082","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-31T01:03:06","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-31T01:03:06","id":4777,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8ZeL3s5Qt4RtJ7KUpzpN5PkkCSgSy4GFQGdb8bFCx7HQZDEE5H","mined":true,"name":"bittex","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8ZeL3s5Qt4RtJ7KUpzpN5PkkCSgSy4GFQGdb8bFCx7HQZDEE5H",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"39676563690","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8ZeL3s5Qt4RtJ7KUpzpN5PkkCSgSy4GFQGdb8bFCx7HQZDEE5H",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"39676563690","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1461484983},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM4tWYfW48M6zBUskLJse6vXnHoXGMzWfDpJofQxsUeWe9c5AwkY",1]],"weight_threshold":1},"balance":{"amount":"15422637469","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-08T22:58:57","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2136687968937","last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"427818357","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-11T19:46:39","hbd_seconds":"370672902948387","hbd_seconds_last_update":"2021-04-21T20:57:24","id":1520,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-27T18:57:06","last_owner_update":"2020-03-27T18:57:06","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM4tWYfW48M6zBUskLJse6vXnHoXGMzWfDpJofQxsUeWe9c5AwkY","mined":false,"name":"bittrex","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4tWYfW48M6zBUskLJse6vXnHoXGMzWfDpJofQxsUeWe9c5AwkY",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"8546751875750","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM4tWYfW48M6zBUskLJse6vXnHoXGMzWfDpJofQxsUeWe9c5AwkY",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"126800","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"1000","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2020-08-25T15:36:48","savings_hbd_seconds":"3690655557480","savings_hbd_seconds_last_update":"2020-09-22T17:25:09","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"8546751875750","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"8546751875750","last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6ZvcykpfY2xiL2oqLMAJPEoR1d2mEGqLnK8FsxmGMvSwuyDPpu",1]],"weight_threshold":1},"balance":{"amount":"1216450","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-24T23:06:21","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1469401581},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"15","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":33926,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-07-27T02:42:21","last_post_edit":"2016-07-27T02:42:21","last_root_post":"2016-07-26T18:24:36","last_vote_time":"2016-07-26T21:44:39","lifetime_vote_count":0,"memo_key":"STM5cZPzKGVVtBz4K9PFmZwaLpgrthZdNFqJkVeqGgBZY4RNHr9LM","mined":false,"name":"bittrex-ryan","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5DXtowrw2eZ13yx72PbGWBHeGVsU5GoiJFwiuCEeC6Af9op3DA",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":6,"post_voting_power":{"amount":"37056887","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8ebQZGam5ZzcLLpMjit63tWpb9gCpxnBerEQdNzzsTfJQ7GFYj",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1269108,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2608758989465","vesting_shares":{"amount":"37056887","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9949,"last_update_time":1469569479},"withdraw_routes":0,"withdrawn":"2608758989465","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8YTJi8ENSp7HmAP3Skm9GYDjbywaHFpqdVEkGZ4myb7EV1Z5w5",1]],"weight_threshold":1},"balance":{"amount":"5486281","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-23T08:02:36","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1469260956},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"64991","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":30856,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6QQtG4wTmZVN3H29P2S3ic561D55T1As7kJDRTr4wgipz8SfTc","mined":false,"name":"bittrexx","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM726YNSBTC3A4K8QDpW8HDEhztjv3WevAohvJeZAAzTSnd39ydi",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"12738674790","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6UNofMPnJUk98hqG8J8uHuWnEbjqv8zapURehjEDjuhE9MbnxB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"12738674790","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1469260956},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8j7BqNNCfqgwPgLLoszJrvbyPXPZ9UApeZz1QJkGfco3nTJjze",1]],"weight_threshold":1},"balance":{"amount":"5849127","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-07-02T09:25:48","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"246818409886","last_update_time":1584694695},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"7589","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2019-08-22T08:26:24","id":1064143,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM65awkcfbcgFKcFvFbuUQnFDRSvFa9whbp72KRPKUcez1cstFVj","mined":false,"name":"bitvavo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8YthbemdYEA6352e3H5EN8AdGvbCs2X1UkVJtqh3UTzXD6cUAD",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"987273639547","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5g6GqCP37TedRwNGFLwKiNTD4wYrh9urRkMSda1gpMVoTXoRXS",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"987273639547","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"987273639547","last_update_time":1584694695},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5G3eXvtEdFuaZJh5Hktk1v4NeVpmjqF28BgbPmbDfT5MVgeqnx",1]],"weight_threshold":1},"balance":{"amount":"1199981","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-13T12:56:21","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1502628981},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":310470,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-11-04T23:01:06","last_owner_update":"2017-08-13T13:15:36","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-12-07T09:45:33","lifetime_vote_count":0,"memo_key":"STM6fxt4vT2M7nZKeLq2tzd2NjwaqUHyfF7J1gEHwhfcKV5zgta7k","mined":false,"name":"bitvillage","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7g4DdbFGkngh3aekDSdqSRRdrE65853a9z9i9Zb4PzjeErPVaj",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"12384384857","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM86QGtqHZAQHuu1cwS4KKR7cvpPn9FYsrxP9BaXLRvi4p7FfZHK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"12384384857","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1512639933},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7mHcf3QdtXEbSkNgmn2KAWvDdAPfRs8aA65dg74XEDbYC4G95F",1]],"weight_threshold":1},"balance":{"amount":"1562972","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-04T11:46:45","curation_rewards":247,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1467632805},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"107426","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:09","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:09","id":14306,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-09-08T10:42:36","last_post_edit":"2016-09-08T10:42:36","last_root_post":"2016-09-08T10:42:36","last_vote_time":"2016-12-22T14:52:54","lifetime_vote_count":0,"memo_key":"STM5JypBYfv75YYDvD4qrqjvPiA2xJK5WpFbczCaeCkBHuMA9kehM","mined":false,"name":"blackmask","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6fX5ntwFdoMoVmaAvCxGU3fuecJFrgYpV1p7djwNhJyBwwLGng",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":37,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8KaeuEhNxkXZCB4RJsnuov3uj8UJPbszxWw7D7MMc7ZnF5fFSx",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1322163,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3228478006003","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9950,"last_update_time":1482418374},"withdraw_routes":0,"withdrawn":"3228478006003","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7rsdq2yp8xoJ1apNU64spDsG95RzapuZKyKBGtYxNZk8bS4fu9",1]],"weight_threshold":1},"balance":{"amount":"1728033","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-22T23:47:54","curation_rewards":3734,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1463960874},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"127","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-05-28T18:29:57","hbd_seconds":"0","hbd_seconds_last_update":"2019-05-28T18:29:57","id":9437,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-02-04T19:51:33","last_post_edit":"2017-02-04T19:51:33","last_root_post":"2016-07-23T15:45:30","last_vote_time":"2018-12-18T02:41:42","lifetime_vote_count":0,"memo_key":"STM6QHKtbLmLH9bgHUmo4ygAMuu1W1X8XPTKjCgAZYfdnXkGPfLf5","mined":false,"name":"bladetrigger","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5uhEPn3SxP8fVogXKZL4JiDWxG2YfxgDuBb2QXowmiiYJtqg2j",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":24,"post_voting_power":{"amount":"2255773547559","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8Yx6AJzuChV2JkkPZ2wwyPZWQzH272KrYpgzeLZisgsNXWUaxh",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":210,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"2255773547559","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2255773547559","last_update_time":1559068197},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8U5KABUA3sXHyRaNtodnQedQGim4GWi5vE8dNu1LhenhV6N1MS",1]],"weight_threshold":1},"balance":{"amount":"1385814","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-04T07:17:15","curation_rewards":49220,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"133044551728","last_update_time":1580653266},"governance_vote_expiration_ts":"2022-08-15T05:30:45","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-04-02T13:19:57","hbd_seconds":"744391224","hbd_seconds_last_update":"2019-04-30T14:24:57","id":177883,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-09-20T21:40:36","last_owner_update":"2018-01-20T01:30:21","last_post":"2020-02-02T14:22:18","last_post_edit":"2020-02-02T14:22:18","last_root_post":"2020-02-01T02:11:54","last_vote_time":"2020-02-02T14:21:06","lifetime_vote_count":0,"memo_key":"STM7PLMCRKsmstJaoAhbQLCvDHy5guJmHYubmLfTiF44VV8Mfibyk","mined":false,"name":"bleedpoet","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4zYRb9vfMzhF3dBDW5J8wBLu4MqSNwoRKrL6VJY2a3TN5mHNmU",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":5045,"post_voting_power":{"amount":"532178206913","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["utopian.app",1]],"key_auths":[["STM7UXjgL2UhVa5b1bVqhZwzPttTGEQmMm4NoGmYWY99ULspw15A9",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1206237,"proxied_vsf_votes":[0,0,0,0],"proxy":"timcliff","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"300","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"1121","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"4155510867","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2103","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2625390012691","vesting_shares":{"amount":"532178206913","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"521534642774","last_update_time":1580653266},"withdraw_routes":0,"withdrawn":"2625390012691","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6a7TZNMwpkF1j7WuAMui2dj3ajDbqVJvGs99VL198qJfP2oPvN",1]],"weight_threshold":1},"balance":{"amount":"6038455","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-29T03:56:00","curation_rewards":7152537,"delayed_votes":[{"time":"2021-04-12T04:47:24","val":"4730028367895"},{"time":"2021-04-20T04:34:12","val":"12667598602639"}],"delegated_vesting_shares":{"amount":"12875647691982","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"36965983439274","last_update_time":1619038800},"governance_vote_expiration_ts":"2022-11-22T16:28:54","hbd_balance":{"amount":"250662","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-25T21:23:30","hbd_seconds":"425486020116","hbd_seconds_last_update":"2021-04-21T20:11:30","id":902150,"is_smt":false,"json_metadata":"","last_account_recovery":"2018-11-25T20:43:42","last_account_update":"2019-10-22T20:39:24","last_owner_update":"2019-10-22T20:39:24","last_post":"2021-04-20T21:27:27","last_post_edit":"2021-04-20T21:27:27","last_root_post":"2021-04-20T14:16:03","last_vote_time":"2021-04-21T21:00:00","lifetime_vote_count":0,"memo_key":"STM7ZFdJfmiKGJqEQuWwEU5JWkWP1nrUZPzT4kw1GQZaccqVvhVWY","mined":false,"name":"blewitt","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5XcwCMzq7DxPQ8tCcD3NW3btqofDxeXcR1ct3UZH832zhLb7zN",1]],"weight_threshold":1},"pending_claimed_accounts":312,"pending_transfers":0,"post_bandwidth":0,"post_count":9465,"post_voting_power":{"amount":"147863933757098","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dtube.app",1],["esteem-app",1],["fundition.app",1],["partiko-steemcon",1],["steemauto",1],["steempeak.app",1],["steeve.app",1],["threespeak",1]],"key_auths":[["STM6M6EKK8gjQ1RzRVzrkbSm3iAT1erJM8XgXdNYG8LT6f49g9FBK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":12791436,"proxied_vsf_votes":["26179220124986",0,0,0],"proxy":"","received_vesting_shares":{"amount":"1808344471464","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"3796347431","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2008","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"19494021072532","vesting_shares":{"amount":"158931236977616","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"138144462425849","last_update_time":1619038800},"withdraw_routes":0,"withdrawn":"19494021072532","witnesses_voted_for":28},{"active":{"account_auths":[],"key_auths":[["STM8KA3G5DemtpQQ5rTmHamAvDGtqAyfwRBZHy9szQSuUaqHx7aAW",1]],"weight_threshold":1},"balance":{"amount":"5000647","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2021-02-23T20:56:57","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"10000000000","last_update_time":1616647566},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1438334,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-05T06:25:42","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6M7XFHTcy3MT6jyDcBMV2sgkm6i7zybgzyrYeKfdp2LbyWNpPN","mined":false,"name":"blockchain-af","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM58DiaFpFxDLB7y4auY8NPBdZsasVa7KjmRKoMLB8QVU39YfC9E",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"40000000000","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakmonsters.app",1]],"key_auths":[["STM8mgWBoeLzGQkL3qnt5sQy3nVccwB9qgCFAbXd81WEDSgLFpvYA",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"40000000000","nai":"@@000000037","precision":6},"recovery_account":"steemmonsters","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"40000000000","last_update_time":1616647566},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8ThVjkYkEQ8wYKgJpzTfnGrAvnVsb2aHi2AgQ7hVPAum3UMJFt",1]],"weight_threshold":1},"balance":{"amount":"32780642","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-12T17:43:27","curation_rewards":6230281,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"38799454467677","last_update_time":1616724162},"governance_vote_expiration_ts":"2022-09-21T02:59:45","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-22T16:04:21","hbd_seconds":"1413906384","hbd_seconds_last_update":"2021-03-28T02:09:57","id":137827,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-09-23T17:43:48","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-03-01T13:57:48","last_post_edit":"2021-03-01T13:57:48","last_root_post":"2020-11-06T19:57:24","last_vote_time":"2021-03-26T02:02:42","lifetime_vote_count":0,"memo_key":"STM7cMXnPJe9s3mdhD45web1xx6vuTM2YSpsnSJAERbnDsP9foKGb","mined":false,"name":"blockops","next_vesting_withdrawal":"2021-04-27T17:09:12","owner":{"account_auths":[],"key_auths":[["STM6FrjiwwberopdUcqxbg3eiM3LBiKCkxVfCZi2aUiS7ehpNx8AR",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":90,"post_voting_power":{"amount":"108679590539831","nai":"@@000000037","precision":6},"posting":{"account_auths":[["minnowbooster",1],["steempeak.app",1],["threespeak",1]],"key_auths":[["STM7tW49U75FQcfnsUREC8DAYJWWUqzrR9fFbBe5afyMP5pPjfAaa",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":203242,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"northgacrypto","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5261745623","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2778","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2019-08-28T00:59:24","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2019-08-28T00:59:24","savings_withdraw_requests":0,"to_withdraw":"201578985100464","vesting_shares":{"amount":"108679590539831","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"15506075776959","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"152093861513293","last_update_time":1616724162},"withdraw_routes":0,"withdrawn":"93036454661754","witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM5vgGoHBrUuDCspAPYi3dLwSyistyrz61NWkZNUAXAifZJaDLPF",1]],"weight_threshold":1},"balance":{"amount":"1205618557","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-03-30T00:04:33","curation_rewards":1000930426,"delayed_votes":[],"delegated_vesting_shares":{"amount":"6926035864656996","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2202448535183488","last_update_time":1619039010},"governance_vote_expiration_ts":"2022-11-18T08:44:33","hbd_balance":{"amount":"2884956","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-10T23:51:48","hbd_seconds":"1013455472271","hbd_seconds_last_update":"2021-04-21T20:39:15","id":440,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-12-16T20:13:12","last_owner_update":"2016-07-14T13:02:06","last_post":"2021-04-20T20:14:42","last_post_edit":"2021-04-20T20:14:42","last_root_post":"2021-04-16T00:43:18","last_vote_time":"2021-04-21T20:00:09","lifetime_vote_count":0,"memo_key":"STM7EAUbNf1CdTrMbydPoBTRMG4afXCoAErBJYevhgne6zEP6rVBT","mined":true,"name":"blocktrades","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7WdrxF6iuSiHUB4maoLGXXBKXbqAJ9AZbzACX1MPK2AkuCh23S",1]],"weight_threshold":1},"pending_claimed_accounts":143710,"pending_transfers":0,"post_bandwidth":10000,"post_count":3939,"post_voting_power":{"amount":"8809794140733955","nai":"@@000000037","precision":6},"posting":{"account_auths":[["downvote-tool",1]],"key_auths":[["STM5SaNVKJgy6ghnkNoMAprTxSDG55zps21Bo8qe1rnHmwAR4LzzC",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":103214124,"proxied_vsf_votes":["1045334866597418","374040654240",0,0],"proxy":"","received_vesting_shares":{"amount":"1061935779434738","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"220","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5426258287307","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2869784","nai":"@@000000021","precision":3},"savings_balance":{"amount":"42350","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"32560","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2020-09-03T15:31:24","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2020-09-03T15:31:24","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"14673894225956213","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4747176272304860","last_update_time":1619039010},"withdraw_routes":3,"withdrawn":0,"witnesses_voted_for":28},{"active":{"account_auths":[],"key_auths":[["STM7ESXp47Xp9KSqoQ5oFosYyUGcfg9u8rp7HQuctDL6PxN3Y4zfA",1]],"weight_threshold":1},"balance":{"amount":"9812294","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-15T00:35:15","curation_rewards":95,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1518654915},"governance_vote_expiration_ts":"2022-11-15T03:59:54","hbd_balance":{"amount":"372328","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-07-13T18:09:12","hbd_seconds":"702293868555","hbd_seconds_last_update":"2020-08-04T14:24:33","id":764233,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-11-29T20:52:15","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-09-09T15:30:06","last_post_edit":"2019-09-09T15:30:06","last_root_post":"2018-07-13T18:31:00","last_vote_time":"2018-11-27T22:52:21","lifetime_vote_count":0,"memo_key":"STM7XhJnFPuaN3DSPrwxav5T9P7AFpVGDx6F47v9DDZWd5mtBmQm1","mined":false,"name":"blocktrades-help","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6hbDzMrPZ2zut6po5SMhX6rfhCNnRK6Hx4miW4bC4NUiTnEZ8F",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":65,"post_voting_power":{"amount":"789874179674","nai":"@@000000037","precision":6},"posting":{"account_auths":[["wisevote.app",1]],"key_auths":[["STM823WVaksvM6ychp3Z1Y45unmiS2kUvuw2pP1s699wPGNDnFoze",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":448038,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"789874179674","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"789874179674","last_update_time":1551997194},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7p5FcF8x5WnMA9FYeojdnmRrWxa1iTkRjsvQKGhsSHHHGMbZKY",1]],"weight_threshold":1},"balance":{"amount":"4440001","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-08T08:08:36","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1502179716},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"22588","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-05-15T11:35:00","hbd_seconds":"0","hbd_seconds_last_update":"2020-05-15T11:35:00","id":302382,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-08-16T05:39:09","lifetime_vote_count":0,"memo_key":"STM6fyJmDjaQYH7Gx7ugZ5ddBQbaXsQLnYtyEFDHy6Hr3tL6nN1sh","mined":false,"name":"bloctrades","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7Ps3guCyfcdTEB9BMMpVxT5xnCvisPCtX63m8f8Lz3Mhk33VT5",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1032314422","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5WKVucCcSDJe5wXirW7Xx2zZcrsVwF6r38p1TaqZZuRqpoEjPg",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1032314422","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9604,"last_update_time":1502861949},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5v1KQdNJXyRdj8VRxF7ttztwLyDBv2Wn3sogy98TVoixLaaPds",1]],"weight_threshold":1},"balance":{"amount":"1457366","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-01-03T05:45:24","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":256119343,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":550475,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7pH14Vy9jQs98dwy6DWTGNXvj6XhyH7DLvxrsBLWCnf3MVCCNe","mined":false,"name":"bluefinncrypto","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7SqQnbJ92nRiGqSVUeUTTL7paR2expViroqy152SbzhKrx7frN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1024477372","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7opG63wALxtWikFp9ddSyab5X8ZocFXK8BzK3hUJAZqA6zVzJc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1024477372","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1024477372,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM69JFxqyxcsKetUTjqhXVHMR8z1w4gZPBco49QzKDWdLKgwe33B",1]],"weight_threshold":1},"balance":{"amount":"1505474","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-12-07T09:25:39","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1607333139},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1422922,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM698knEyNf9SzToez1FAPJ9ZGEa5aLuvadxFMmCcfKppHkBeSpQ","mined":false,"name":"bluefinnhive","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7CFrg7w5KW6nUQA2RwGatodHcTFhJ6XTBsXaBKBPL4tDDMqf99",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7CEVi1EaLTfbnPzC4tLRT4rHTtXNPTirQ8tBtvJRuJVhGN7x1R",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"wallet.creator","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1607333139},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7Q3RLdosX7kckeifj4UVFBdA6RDvh7oMuLCAGimbZ2nt1eoFcS",1]],"weight_threshold":1},"balance":{"amount":"12049858","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-23T06:10:03","curation_rewards":4654426,"delayed_votes":[],"delegated_vesting_shares":{"amount":"20629656849","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2386316735764","last_update_time":1619038797},"governance_vote_expiration_ts":"2022-11-07T18:25:42","hbd_balance":{"amount":"11","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-09T02:59:57","hbd_seconds":"10819962","hbd_seconds_last_update":"2021-04-21T20:59:57","id":215940,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-02-14T06:53:45","last_owner_update":"2018-05-13T17:13:54","last_post":"2021-02-14T06:50:39","last_post_edit":"2021-02-14T06:50:39","last_root_post":"2020-09-21T08:32:12","last_vote_time":"2021-04-21T19:44:12","lifetime_vote_count":0,"memo_key":"STM67kZEqX2bdojfjcXxbW5Sesnc1ztnu3FbuBYcnd4EjA6hfV5KJ","mined":false,"name":"bluemist","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM75LaBR7xi13JXvMKTKE82rveEY9p3WXsoVpDrECiVurNYUx38u",1]],"weight_threshold":1},"pending_claimed_accounts":426,"pending_transfers":0,"post_bandwidth":0,"post_count":5071,"post_voting_power":{"amount":"9545266943058","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dapplr",1],["steemauto",1]],"key_auths":[["STM5KeXWw1X3aDh3sFDdempY9fH8ofPN1rHgjq9MUsxZwBZaxim9n",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3176528,"proxied_vsf_votes":["550401903391227",0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"whitemist","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"9565896599907","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"8528665591232","last_update_time":1619038797},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":17},{"active":{"account_auths":[],"key_auths":[["STM77b51wT6PRpBvswfkekXmBpwbiifvuhbyiF3FEbUZoSVh7hZbD",1]],"weight_threshold":1},"balance":{"amount":"1354046","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-10-02T21:55:18","curation_rewards":16068,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1506981318},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"102363","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-04-30T17:02:36","hbd_seconds":"0","hbd_seconds_last_update":"2019-04-30T17:02:36","id":391639,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-11-14T21:17:45","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-05-24T06:46:06","last_post_edit":"2019-05-24T06:46:06","last_root_post":"2019-05-24T06:46:06","last_vote_time":"2019-05-03T17:10:48","lifetime_vote_count":0,"memo_key":"STM5pjYFBFP6GmpVwviz3WhNVYyRC74BpkceMXi57UWTiHtyx6U1E","mined":false,"name":"bluerocktalk","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6d2B431rEBHbx54DRHgTCfAFsYHoUGoHB32KkWCPJYXdhTzpTq",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1798,"post_voting_power":{"amount":"630844991537","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dlive.app",1],["dmania.app",1],["share2steem.app",1],["vimm.app",1]],"key_auths":[["STM5cCpyYf7xwZDtq8xFX6Ar3p855PKy1Mafa4yg6jgMotvCvRqsg",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5191214,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"10111000000","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"322","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1912989844","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"959","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2001907469823","vesting_shares":{"amount":"620733991537","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1825532288892","last_update_time":1556903448},"withdraw_routes":0,"withdrawn":"2001907469823","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5DsaHj8s81XXxc3iTaT6KHuGVDezB5Ba8oChumNSKmskRtRbNp",1]],"weight_threshold":1},"balance":{"amount":"4999975","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-04-12T15:38:33","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":50961426,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":940192,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-04-12T17:54:27","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5VVtEj9nHy4Mu4siovbetTjyenZqs6hoM6tuBZqAJVQefge5zc","mined":false,"name":"bmkhouri","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5qV9DFiYuSaCAW2nXtH23Vn3qf5TZ4wGHLAD47hebFLAyVUGnD",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"203845702","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6fAfGbNqyZcPKGmtrynavWKdzrkqYx4dVcza8oh2UBzzEKQzB7",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"203845702","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":203845702,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7MKhkESzUgzvRC6gabSNL4aUcWWNbRw45mBEEU3jdQcgSwo82X",1]],"weight_threshold":1},"balance":{"amount":"1181686","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-06-18T02:00:39","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"20571223371764","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1560823239},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"10170","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-24T12:36:42","hbd_seconds":"4380873543","hbd_seconds_last_update":"2020-02-29T12:34:39","id":1285995,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5UvQ9EmqUzxWi7KKVtMexBNoPvx4jEvx2djETeef2nFaZNhCt5","mined":false,"name":"bobba2019","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6rDUsz6KM5gQzALWVNj7FNPRja1M5b9kgM8FJV7AUKbhVejJZt",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"137600494215","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8W9AroiK7ubyxvVptAnBMzXdyAnyhM1KigtT9KSHMx5pRaszBT",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"20708823865979","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"137600494215","last_update_time":1566581259},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7Xjos1gDfoHGGJEGnQBRx3xzhwF4xcdvcxyzfduSr3ASdWPJxZ",1]],"weight_threshold":1},"balance":{"amount":"5758385","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-18T07:34:33","curation_rewards":362694,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4065078256606","last_update_time":1571465295},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"84612","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-10-14T01:04:03","hbd_seconds":"38096722224","hbd_seconds_last_update":"2019-10-19T06:08:15","id":453814,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-07-28T00:04:54","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-10-29T05:45:18","last_post_edit":"2019-10-29T05:45:18","last_root_post":"2019-10-28T14:12:21","last_vote_time":"2019-10-19T03:02:21","lifetime_vote_count":0,"memo_key":"STM5JxLKxG3udNrgSYJuYM6m8xpT3odGA9ZWvMTajuUdM6iQjpvnR","mined":false,"name":"bobsrepair","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5T7eJ9zFf2uGPe3sFZeKyPbBdAcfF7Q23wgwY6xqYV3J33aSxQ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2328,"post_voting_power":{"amount":"9810408405","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dmania.app",1],["smartsteem",1]],"key_auths":[["STM8gv9xEEGZDCE2TF6fLcY7kPpkrTGwd1FhZFappZmS6qGMEuhHi",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":93163,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"163970292","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"83","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"16250502618023","vesting_shares":{"amount":"9810408405","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"16260313026428","last_update_time":1571465295},"withdraw_routes":0,"withdrawn":"16250502618023","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6uw6Mzd8AYUXBh2NHR6MKVmP8GyFfPCw7Pg2gQYkWsieaXWjZb",1]],"weight_threshold":1},"balance":{"amount":"1209363","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-02T16:57:45","curation_rewards":55748,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"7977394680","last_update_time":1618925577},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"84","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-10-04T18:03:03","hbd_seconds":"0","hbd_seconds_last_update":"2019-10-04T18:03:03","id":790609,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-06-07T04:52:57","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-07-10T14:57:51","last_post_edit":"2019-07-10T14:57:51","last_root_post":"2019-07-03T03:13:09","last_vote_time":"2021-04-20T13:32:57","lifetime_vote_count":0,"memo_key":"STM7bi6uFEBQpfQ9EhiuFX7SbAJx7o5baXeM1gcCftVvcw1YjPNX7","mined":false,"name":"bogdasha","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5TZNZbTDoXJ75kQSXVvGTR6UwxWaKVyq8bNAS8C87S6hGvCnjS",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":568,"post_voting_power":{"amount":"31909578723","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["decentmemes.app",1],["dlive.app",1],["dmania.app",1],["dtube.app",1],["steem.app",1],["steemauto",1]],"key_auths":[["STM761SWEvGLHE2f9ezHH8FbGPNraNCGu8TbDffN4aGgACsp3L6Cc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":5850731,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2226795080010","vesting_shares":{"amount":"31909578723","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"31271387148","last_update_time":1618925577},"withdraw_routes":0,"withdrawn":"2226795080010","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5oXFzDbUzAt12J9GpcoiZPtiJxSaV28rnnjLBoc4m8JwNMn2LP",1]],"weight_threshold":1},"balance":{"amount":"2158356","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-10-09T16:21:45","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1476030105},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":103907,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5D9NqPnJu6ptAbvCZhSPKQt189vUDrgnpMcJhNwq1ZGWku3kq5","mined":false,"name":"boinkdance","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5FScFuGGo4h1qV5Ycp2KxivbjSmrskMaNSiYX764x5H5qpaLAN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"10258296306","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM87KbJkfo2HgKKYgZaY21BjGV25S96t2p3mreNnQCh15s8eS5sg",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4416460439404","vesting_shares":{"amount":"10258296306","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1476030105},"withdraw_routes":0,"withdrawn":"4416460439404","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6MYcNfYCjs69M1tdHfjX1WjT1ZnxzAinNvu8aefPTeaysBP9aM",1]],"weight_threshold":1},"balance":{"amount":"1421826","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-11-02T23:45:39","curation_rewards":8735,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1412274757290","last_update_time":1617373326},"governance_vote_expiration_ts":"2022-06-08T07:39:39","hbd_balance":{"amount":"23","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-02T14:22:06","hbd_seconds":"0","hbd_seconds_last_update":"2021-04-02T14:22:06","id":1419194,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-16T12:50:39","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-03-27T18:02:48","last_post_edit":"2021-03-27T18:02:48","last_root_post":"2021-03-04T17:26:09","last_vote_time":"2021-03-27T18:02:54","lifetime_vote_count":0,"memo_key":"STM7BmPgEh3gddgHrHbiYqQd1wBsMCT1rLXARx6PFAbWzvy2mrxaj","mined":false,"name":"bonesandomens","next_vesting_withdrawal":"2021-04-28T15:31:18","owner":{"account_auths":[],"key_auths":[["STM8hzBiatiJnoAErSp8iTixDsqDz56E3MSUc6tduwmfasVfyfZqR",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":59,"post_voting_power":{"amount":"5058715392467","nai":"@@000000037","precision":6},"posting":{"account_auths":[["hive.blog",1],["peakd.app",1]],"key_auths":[["STM4uXK5cw85ddds5DbMFYihHP9Zf1vhLM3bazz5LTnKF5EkcXKgX",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":573806,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"2401401203360","nai":"@@000000037","precision":6},"recovery_account":"wallet.creator","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3837493638527","vesting_shares":{"amount":"2657314189107","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"295191818349","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"5649099029165","last_update_time":1617373326},"withdraw_routes":0,"withdrawn":"1180767273396","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM6Pa6HQeVigXvKUM1Q9BGmsyuxYfK3BSyPWMD1erb4c9awjjQAf",1]],"weight_threshold":1},"balance":{"amount":"14276284","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-13T04:24:06","curation_rewards":30516,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1468383846},"governance_vote_expiration_ts":"2022-09-05T17:33:15","hbd_balance":{"amount":"31330","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-08-04T02:10:39","hbd_seconds":"0","hbd_seconds_last_update":"2018-08-04T02:10:39","id":18895,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-07T14:31:15","last_owner_update":"2020-03-07T14:31:15","last_post":"2016-09-20T18:56:33","last_post_edit":"2016-09-20T18:56:33","last_root_post":"2016-09-12T17:29:00","last_vote_time":"2017-01-02T12:20:36","lifetime_vote_count":0,"memo_key":"STM6jgPeu45ffyoqCTh5F1YEsTu4uMpuA3Xj7wb1CxpM5gKbEK2tV","mined":false,"name":"bonface","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5Vh2V6qxvhU5wrDaocfDFYWq99AppiJWHQxgFr54UFoYndSFt3",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":34,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6mUuCqNRo6nwV5nZdBBbwKirUUq9fKo91FUDYNAfGdcNN6EBM8",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":218,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"29626822625494","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9900,"last_update_time":1483359636},"withdraw_routes":0,"withdrawn":"29626822625494","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM69oh7vh4hPHBZKUKbhytuCisSzMv7nzhZA75MbeR5jCKmvMGEN",1]],"weight_threshold":1},"balance":{"amount":"1544722","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-08-12T09:40:45","curation_rewards":115595,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1534066845},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"167344","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-23T19:35:39","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-23T19:35:39","id":1101558,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-08-15T22:13:15","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2019-08-25T05:16:06","lifetime_vote_count":0,"memo_key":"STM7qzDNdJkhGMQ4HG1j1T1cFb8jkjx7qkwaUm1U5q4orNJGMSsbB","mined":false,"name":"boozeup2018","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5ARchN9FWTLnW6HRYQNoRbgjXM5EaEc1fuPJ8QTzkQP6n3Uxhx",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"41253279328","nai":"@@000000037","precision":6},"posting":{"account_auths":[["minnowbooster",1]],"key_auths":[["STM4z7EeZ1qVhKD3ocxZc9s7r7gw6FVfvaGXrqFADKN5Xw5sVbxoD",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"231516879249","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"115595","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3065109174173","vesting_shares":{"amount":"41253279328","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"502552366161","last_update_time":1566710166},"withdraw_routes":0,"withdrawn":"3065109174173","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6LRzBsnvNfRXfh23aNr58VhkVooSpRgAYKVX8JHbXPngCQ35rW",1]],"weight_threshold":1},"balance":{"amount":"7584295","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2021-01-28T17:50:15","curation_rewards":461903,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"18475838028997","last_update_time":1619026506},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1337","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-20T11:12:21","hbd_seconds":"136377513","hbd_seconds_last_update":"2021-04-21T17:35:06","id":1432970,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-04-13T18:18:54","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-19T12:58:27","last_post_edit":"2021-04-19T12:58:27","last_root_post":"2021-04-19T09:15:15","last_vote_time":"2021-04-21T17:34:21","lifetime_vote_count":0,"memo_key":"STM5MpAdvjgmQJ2TJNSoHVJubFZuSFxrTzVwwtxt3Xhcqgy44RVbP","mined":false,"name":"borivan","next_vesting_withdrawal":"2021-04-27T05:19:09","owner":{"account_auths":[],"key_auths":[["STM73z24mCZZ6PPmD8TBi5kJk9KMdqkxHTWUEM2ohabEAgLorzjE4",1]],"weight_threshold":1},"pending_claimed_accounts":4,"pending_transfers":0,"post_bandwidth":0,"post_count":98,"post_voting_power":{"amount":"81261589787011","nai":"@@000000037","precision":6},"posting":{"account_auths":[["ecency.app",1],["hive.blog",1],["leofinance",1],["peakd.app",1],["steemauto",1]],"key_auths":[["STM7FQTpUuVu5w5SrG8zviGQP7WLMp8wK84Yve9JNrh6mKfyicCW7",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":202567,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"tipu","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5847700674","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"3093","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"95657089723251","vesting_shares":{"amount":"81261589787011","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"7358237671020","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"70261038293697","last_update_time":1619026506},"withdraw_routes":0,"withdrawn":"14716475342040","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5bLAAqZAFiQ7au3djZ87BRSBREE5ukV2VHeNH1gDGNWs6SFZX7",1]],"weight_threshold":1},"balance":{"amount":"5629700","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-07-27T11:57:03","curation_rewards":643,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1532692623},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-06-29T00:22:00","hbd_seconds":"0","hbd_seconds_last_update":"2019-06-29T00:22:00","id":1082409,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-09-09T03:59:33","lifetime_vote_count":0,"memo_key":"STM7GDEnNsCcELhFKg8DwADUjdK1vLx4kDopiJiyPH64rGtV3p4zB","mined":false,"name":"boscorp","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8Ymtj6Qenw5Q6b1DKi1kYoDAidMvamfu8DBBqL5TAMgLvzExDa",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6pUeQqytt6pEojjuBKBkTunXc4QcNmXtNpv54mzMoMmuFP1CGv",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"11317863459","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"11317863459","last_update_time":1561767720},"withdraw_routes":0,"withdrawn":"11317863459","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6s5JPz4Gq9ZxFMAGonYdwEpbSNR663VDVEM9N4FndtPva8c1Jh",1]],"weight_threshold":1},"balance":{"amount":"2500011","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-17T01:07:18","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1489712838},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:15","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":138743,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6FpNSRqg6w1keHDWwKNT3mqYrE8SrDZcqPpDmdqYa9jz8vQKuu","mined":false,"name":"boubou732","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8DsWCuhEUr28yn923wx1xDXJiG2pJF2f1LC7PRsWKUSQAFmikq",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"72812498666","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8CrxeivMSucntmj8iAd6GpEGabsBkzxgdebPqNtAfpngamLu2g",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"72812498666","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1489712838},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6pA8aW5LjW4E9oHqdi9yFPwTrFC32BQEsNUGF9zzeveANGvC6K",1]],"weight_threshold":1},"balance":{"amount":"1833510","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-01-29T02:46:18","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1207430,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6GpwS8a2EJQUstUEzb5hhwwhwwsFX11GrAZEVxixspToKuNm4V","mined":false,"name":"bowechaim","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7Ahrx3TK3Zb4ii7RGayTc7nKK3WypEpUrcSH64c4mJkMLwsxnj",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8c6YTu7BibxPfX5wgw8YvCtv89HUM2RU1BqPZHjcCThX2q9Nir",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Qhykuk49ECjEc2bUxvxCCQw6oaHT3fJRi74AkwrxuBaeA82RB",1]],"weight_threshold":1},"balance":{"amount":"2313581","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-14T15:51:57","curation_rewards":2087039,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6252728547408","last_update_time":1619035668},"governance_vote_expiration_ts":"2022-10-31T06:35:30","hbd_balance":{"amount":"86348","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-14T14:41:39","hbd_seconds":"38540566320","hbd_seconds_last_update":"2021-04-19T18:40:39","id":23029,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-04-15T19:29:36","last_owner_update":"2016-07-22T07:54:39","last_post":"2021-04-21T18:33:42","last_post_edit":"2021-04-21T18:33:42","last_root_post":"2021-03-28T12:15:21","last_vote_time":"2021-04-21T20:07:48","lifetime_vote_count":0,"memo_key":"STM82D5azTd99hCnFYL3yxXfBKyciJ6zgemWL7NvcgYFaFE1VVboK","mined":false,"name":"bowess","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6XH9Zxiqu8fYzEv1KEbt16rtGahMEn66ZEPoAD89Lqf1Z945Mm",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3891,"post_voting_power":{"amount":"25010914189635","nai":"@@000000037","precision":6},"posting":{"account_auths":[["cryptobrewmaster",1],["dblog.app",1],["drugwars.app",1],["engrave.app",1],["holybread.app",1],["nextcolony",1],["peakd.app",1]],"key_auths":[["STM5aSxPGwvfLhsUcCpaJRmwtDEmQuUVghVxuPwSc9Bg3bRfQMrin",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2441382,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steelman","reset_account":"null","reward_hbd_balance":{"amount":"10","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"9359130853","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"4950","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2020-05-19T07:56:42","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2020-05-19T07:56:42","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"25010914189635","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"23367944237152","last_update_time":1619035668},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":30},{"active":{"account_auths":[],"key_auths":[["STM8e3fyVJrRv1uyHxq6WFFpH1nxfKjkyMRn6gkYV42VERcUPs8Mk",1]],"weight_threshold":1},"balance":{"amount":"1931030","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-08-19T00:44:09","curation_rewards":2114808,"delayed_votes":[],"delegated_vesting_shares":{"amount":"156483419554","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"5263162323607","last_update_time":1616911518},"governance_vote_expiration_ts":"2022-10-08T09:14:33","hbd_balance":{"amount":"36307","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-28T06:05:18","hbd_seconds":"0","hbd_seconds_last_update":"2021-03-28T06:05:18","id":69591,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-24T08:35:12","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-09-05T00:00:45","last_post_edit":"2020-09-05T00:00:45","last_root_post":"2020-04-02T11:58:27","last_vote_time":"2020-11-02T10:33:03","lifetime_vote_count":0,"memo_key":"STM8fM2FgwuYRfNKewmaDG3iBxE4SjXZf5kGZ8mi1DYpPd48xNjj8","mined":false,"name":"boxcarblue","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6qbmUi5PB1RbUPZhrEeE38PQfsmZ4HB4M8qsSu6PgGNsm3Z1Zy",1]],"weight_threshold":1},"pending_claimed_accounts":1,"pending_transfers":0,"post_bandwidth":10000,"post_count":6766,"post_voting_power":{"amount":"21052649294434","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["busy.app",1],["dlive.app",1],["dpoll.xyz",1],["fundition.app",1],["peakd.app",1],["steemhunt.com",1],["steempeak.app",1]],"key_auths":[["STM7vXBky8u43mHKRMPJK7jBCc6GU9iHifuZ65nB2znSmoKJbAdCH",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":15766836,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-04-24T06:55:18","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-04-24T06:55:18","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"21209132713988","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"21052649294434","last_update_time":1616911518},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":25},{"active":{"account_auths":[],"key_auths":[["STM5Y6Qksnb5Uyr9fk2mG4V4UWTvVGgw9pyf5QgiJBsg39jKceCHC",1]],"weight_threshold":1},"balance":{"amount":"2889344","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-18T02:18:54","curation_rewards":387272,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"25177888002","last_update_time":1595507790},"governance_vote_expiration_ts":"2022-10-05T22:37:48","hbd_balance":{"amount":"22827","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-07-23T12:36:30","hbd_seconds":"0","hbd_seconds_last_update":"2020-07-23T12:36:30","id":139059,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-06-05T16:11:18","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-07-29T15:49:24","last_post_edit":"2020-07-29T15:49:24","last_root_post":"2020-07-29T15:49:24","last_vote_time":"2020-07-23T12:36:06","lifetime_vote_count":0,"memo_key":"STM7FkvTPdhn2DwsV3sVnbbN3LXdxfiPY4Yu6UNymAcsMHjtrN1PZ","mined":false,"name":"boxmining","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5cXDaiHVHMtkvPb25zAw982ptYXaT8c4TQVrriqbqPBCMbVeMT",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":2940,"post_voting_power":{"amount":"100711552011","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dlive.app",1],["esteemapp",1],["peakd.app",1],["smartsteem",1]],"key_auths":[["STM5KXWiSKbspoRT2uwBjGFxgTk2zdBDHnr4TyJuaLe9F9Ji44YFr",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":22283954,"proxied_vsf_votes":[0,0,0,0],"proxy":"buildteam","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"9668","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"82801929511","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"42731","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"10418329078275","vesting_shares":{"amount":"100711552011","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"98447168047","last_update_time":1595507790},"withdraw_routes":0,"withdrawn":"10418329078275","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7FNWtVYAtyfqpDFxyomLutiruk73o4Koj64ZF7VwShGsByVgQL",1]],"weight_threshold":1},"balance":{"amount":"1969044","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-09-05T08:56:18","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1567673778},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1315514,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7viZDZ3ESu5SUtMD5Kwb5Q4Pu9y552BfR9eQAVoX949rYFid6Y","mined":false,"name":"boydg","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6KosR8UnME4WLLTC4Hp4YoLn4N3Dw7qzdyWHUzBu9bquiVCk8J",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6XLB3i9kTRrQY5Y3A3FySTqrak6J7Z1JtM4f1atwWKVSXe1Qvf",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"blocktrades","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1567673778},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5ZrmH4X3eWWXg7u7NZhZ454EmZH1PcpAQFjXUt2z2SB6Zi2Nbo",1]],"weight_threshold":1},"balance":{"amount":"1684236","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-03-31T18:56:42","curation_rewards":133,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1490986602},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-03-23T07:52:12","hbd_seconds":"0","hbd_seconds_last_update":"2018-03-23T07:52:12","id":143267,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-09-27T17:21:06","lifetime_vote_count":0,"memo_key":"STM5qo2BN4Vbc3CjGGwXHXYRkHnNhsHNk5AMGV3rj4NDhLXLEBuRY","mined":false,"name":"bradwaite","next_vesting_withdrawal":"2021-04-28T03:26:15","owner":{"account_auths":[],"key_auths":[["STM6KJvgh1R1jijuthqj5dvU7AedgasHhb4T1jwVh7C5FPCSsbHEk",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"2003808524560","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6aaQLz3uVgak7zZRwLiqpzjtGAu2go8AQEyAnuDRRMUcoePvpi",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5185199707471","vesting_shares":{"amount":"2003808524560","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"398861515960","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1506532866},"withdraw_routes":0,"withdrawn":"3190892127680","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6CsWQJeDinGd3ePA2amK3Jyxs8spC2iB6XEzviZVyK9vDL6qNC",1]],"weight_threshold":1},"balance":{"amount":"16321761","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-11-28T12:01:12","curation_rewards":28,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1480334472},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1159","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-08-03T01:14:33","hbd_seconds":"0","hbd_seconds_last_update":"2018-08-03T01:14:33","id":113932,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-11-29T10:42:15","last_post_edit":"2016-11-29T10:42:15","last_root_post":"2016-11-29T10:42:15","last_vote_time":"2016-11-29T10:42:15","lifetime_vote_count":0,"memo_key":"STM8XJry2Q3VVLU2M81xFWHHfw1SoaVyj5XvEyEr1ks7ZqziPkoYo","mined":false,"name":"braead65","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4xRBMNx8Qdbsb6WcfkHpWECHsQpaXtccoyeFyQELfzV773Dg5c",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":2,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM84gepsg74vGgp6ACPsyGHoGiMYe5pF2RupLVyD2gGJJKAFWpTc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"73169049809092","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9950,"last_update_time":1480416135},"withdraw_routes":0,"withdrawn":"73169049809092","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7pcDmzvZAGiFCMA5785nvtxGfxJcRamXt2k9SbN7ay7yd2uQ5n",1]],"weight_threshold":1},"balance":{"amount":"5013710","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-01T15:22:36","curation_rewards":27207594,"delayed_votes":[],"delegated_vesting_shares":{"amount":"40701413585053","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"100420851727447","last_update_time":1588515690},"governance_vote_expiration_ts":"2022-11-30T02:21:45","hbd_balance":{"amount":"1497","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-06-26T06:07:03","hbd_seconds":"0","hbd_seconds_last_update":"2020-06-26T06:07:03","id":237722,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-05-27T05:24:39","last_owner_update":"2017-11-14T05:35:51","last_post":"2019-09-01T05:49:03","last_post_edit":"2019-09-01T05:49:03","last_root_post":"2019-06-10T09:40:18","last_vote_time":"2020-03-20T12:08:09","lifetime_vote_count":0,"memo_key":"STM4wQBQ8EEfEbQSZ3LJo4tWSxQ8jcN7mqMyAuuJKtybAYm69HSg3","mined":false,"name":"bramd","next_vesting_withdrawal":"2021-04-25T01:32:15","owner":{"account_auths":[],"key_auths":[["STM6GVXMywGnV5ajqtdboDa49DsJAJm9KNrN5dV2AS7PZoeiuKgbG",1]],"weight_threshold":1},"pending_claimed_accounts":92,"pending_transfers":0,"post_bandwidth":0,"post_count":462,"post_voting_power":{"amount":"33196061121105","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemerapp",1],["steemhunt.com",1]],"key_auths":[["STM7C2Rw9LpF4yRQttgBZfzAbpH4iLXJ9uMhFvDmyEGnRKeJt7Bbf",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":438999,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"keepit","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"41110007324737","vesting_shares":{"amount":"73897474706158","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"3162308255749","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"401683406909792","last_update_time":1588515690},"withdraw_routes":0,"withdrawn":"9486924767247","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Ss7hTa8zm6NTwAZUvLYRiN2sAqcs7HdXDCSTcgm7Bbry6ym42",1]],"weight_threshold":1},"balance":{"amount":"1486953","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-18T15:30:09","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1505748609},"governance_vote_expiration_ts":"2022-11-06T05:53:00","hbd_balance":{"amount":"89","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:15","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":373952,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-10-08T22:34:15","last_owner_update":"1970-01-01T00:00:00","last_post":"2017-10-07T18:24:42","last_post_edit":"2017-10-07T18:24:42","last_root_post":"2017-10-07T18:24:42","last_vote_time":"2017-10-08T22:00:03","lifetime_vote_count":0,"memo_key":"STM8AkZxXuLRmNc4AWo12FAPnNh7DKtwhnLgyEksu77uke2SH1xzT","mined":false,"name":"brandonmathis","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7HEpG92t8zxqdARaC3vRzgaCifLjkgiAPj8XVyA5DwwcwKWfDf",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3,"post_voting_power":{"amount":"10259771357","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8JcoLuUBVywedBx4FCCmVXLjxL5ULiWi4KLqYKC9E8iB1FksLz",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":169,"proxied_vsf_votes":[0,0,0,0],"proxy":"jerrybanfield","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2989523608020","vesting_shares":{"amount":"10259771357","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9990,"last_update_time":1507500003},"withdraw_routes":0,"withdrawn":"2989523608020","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5Foh2Tohu6EJUgksZ62MbErbD52njN7H6hLUqgzGZaaDDMqjME",1]],"weight_threshold":1},"balance":{"amount":"13060377","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-12T07:05:03","curation_rewards":633740,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"178444456673","last_update_time":1582162194},"governance_vote_expiration_ts":"2022-09-14T14:50:12","hbd_balance":{"amount":"240858","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-20T01:29:54","hbd_seconds":"0","hbd_seconds_last_update":"2020-02-20T01:29:54","id":11953,"is_smt":false,"json_metadata":"","last_account_recovery":"2016-07-20T20:21:30","last_account_update":"2019-03-17T21:53:00","last_owner_update":"2016-07-20T20:21:30","last_post":"2019-10-21T01:28:33","last_post_edit":"2019-10-21T01:28:33","last_root_post":"2019-10-21T01:28:33","last_vote_time":"2019-09-16T05:46:39","lifetime_vote_count":0,"memo_key":"STM7hkKhSw4TALV5m8AhNwUALp72XkHkTEAePMXFqTVVEJkE8dMfj","mined":false,"name":"bravenewcoin","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7sZWJ87JznAiveavBCm3EVMkhNiAouRWmUNvo2rCzt68xhJvjG",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":857,"post_voting_power":{"amount":"713777826692","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1],["streemian",1]],"key_auths":[["STM7iAxdi8UUZhrrFn8NDwtRN5mjUYGAFJ6wjZ2Ab7EJvSfDz43tm",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":20847657,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"100000","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"500000","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2018-05-27T00:41:45","savings_withdraw_requests":0,"to_withdraw":"2735971989266","vesting_shares":{"amount":"713777826692","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"713777826692","last_update_time":1582162194},"withdraw_routes":0,"withdrawn":"2735971989266","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM8EfHYgLxs3pKF3BDuB6hAxDDz3sRsVyjqDZZWsbTgmNRYj7iSf",1]],"weight_threshold":1},"balance":{"amount":"1156203","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-23T05:18:42","curation_rewards":600624,"delayed_votes":[],"delegated_vesting_shares":{"amount":"4200000000000","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6462743835435","last_update_time":1584719703},"governance_vote_expiration_ts":"2022-10-22T23:54:39","hbd_balance":{"amount":"786789","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-18T19:19:15","hbd_seconds":"67974999675","hbd_seconds_last_update":"2020-03-19T19:19:12","id":30624,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-07-12T05:19:27","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-03-27T08:10:09","last_post_edit":"2019-03-27T08:10:09","last_root_post":"2018-07-12T10:50:48","last_vote_time":"2020-03-20T15:55:03","lifetime_vote_count":0,"memo_key":"STM5Maz1wNFqJgqvSJZm1HdyvzStGMuh5JpmnUeVPWpAP7ssas2zd","mined":false,"name":"brendio","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8brxLXayQzN3bXZBa4JfBSw5aJTSbiRc3rvqCN4Ee7L2zR5kXz",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":509,"post_voting_power":{"amount":"25850975341742","nai":"@@000000037","precision":6},"posting":{"account_auths":[["esteemapp",1],["streemian",1]],"key_auths":[["STM7B1jXNmfhxcaaR3JnD7hdHFwnfN7Dahw3rqXvAbFvgRrrvAgqc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":289810,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1346772226","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"688","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"30050975341742","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"25333955834907","last_update_time":1584719703},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":10},{"active":{"account_auths":[],"key_auths":[["STM5C8QK6aBqWMTpmEgmPpJq6LFF8ipxyfphRFx4HsytwdsatpPJv",1]],"weight_threshold":1},"balance":{"amount":"10184767","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-15T21:48:09","curation_rewards":714311,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4876504303107","last_update_time":1602809070},"governance_vote_expiration_ts":"2022-08-01T10:58:15","hbd_balance":{"amount":"2921","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-10-16T00:44:30","hbd_seconds":"0","hbd_seconds_last_update":"2020-10-16T00:44:30","id":500205,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-08-03T03:08:06","last_owner_update":"2020-08-03T03:08:06","last_post":"2020-03-20T19:04:36","last_post_edit":"2020-03-20T19:04:36","last_root_post":"2018-08-14T23:03:57","last_vote_time":"2020-08-29T01:54:39","lifetime_vote_count":0,"memo_key":"STM8V9Dfg5ghN9XXgb8Wtde3iTFVcd7WyesXEkAmQ3btJe2r5Nsyf","mined":false,"name":"brettcalloway","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7NYEiwqc39K9rA4VSuvQYj16vAwDLD7WoGR7fGbzH2u6YfQ8FY",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1386,"post_voting_power":{"amount":"9617555716","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dlive.app",1]],"key_auths":[["STM86cAT4wAdH4qkXwZwrL49F487T5czQYR8J4p68F3tfdd92kAFn",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":303310,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"1","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"19496399656715","vesting_shares":{"amount":"9617555716","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"19506017212431","last_update_time":1602809070},"withdraw_routes":0,"withdrawn":"19496399656715","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM7QpRzGGAQjKnqccEXE6tqkkDuqVbccjXQbbus46QfVNYTvoZuW",1]],"weight_threshold":1},"balance":{"amount":"1903142","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-02T07:12:12","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1459581132},"governance_vote_expiration_ts":"2022-07-28T19:00:03","hbd_balance":{"amount":"3","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-04-15T15:41:57","hbd_seconds":"0","hbd_seconds_last_update":"2018-04-15T15:41:57","id":683,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7QpRzGGAQjKnqccEXE6tqkkDuqVbccjXQbbus46QfVNYTvoZuW","mined":true,"name":"brian","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7QpRzGGAQjKnqccEXE6tqkkDuqVbccjXQbbus46QfVNYTvoZuW",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"176332000000","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7QpRzGGAQjKnqccEXE6tqkkDuqVbccjXQbbus46QfVNYTvoZuW",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"steemed","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"176332000000","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1459581132},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM65V3jDoKgTKNxtg7kanZ879wxJrGcpxxai5ZCkPUQ2iUf4mFGg",1]],"weight_threshold":1},"balance":{"amount":"10742238","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-23T17:42:15","curation_rewards":385137,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"225217257705","last_update_time":1611684273},"governance_vote_expiration_ts":"2022-07-03T07:17:00","hbd_balance":{"amount":"9885","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-01-26T18:04:33","hbd_seconds":"0","hbd_seconds_last_update":"2021-01-26T18:04:33","id":31748,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-06-06T00:38:18","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-02-19T23:32:18","last_post_edit":"2021-02-19T23:32:18","last_root_post":"2020-08-27T01:57:48","last_vote_time":"2020-08-28T21:11:57","lifetime_vote_count":0,"memo_key":"STM4yESdVfHQzXHDPE31zVUyQaQf5gSDE1dgXTxYKLcd8cecSUPZr","mined":false,"name":"brian-rhodes","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5S2Z4kAA6dTgS7zz2NCdX96evaBy1qskT6oofcpiEvXiESz6EM",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":2008,"post_voting_power":{"amount":"900869030823","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["dlive.app",1],["esteemapp",1],["partiko-steemcon",1],["peakd.app",1],["steemium.app",1]],"key_auths":[["STM7irtwkPF4HPVAzMPp957zj7gb1VrMfRNZghydnRwM8USiftejJ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":9453720,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"20","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"169057053","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"89","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"8229799144353","vesting_shares":{"amount":"900869030823","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"900869030823","last_update_time":1611684273},"withdraw_routes":0,"withdrawn":"8229799144353","witnesses_voted_for":21},{"active":{"account_auths":[],"key_auths":[["STM7hKxq1tYpimJJwrJhb2PdxBsLZid8SUixuzfF74YYFGBeptRm2",1]],"weight_threshold":1},"balance":{"amount":"3566994","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-13T19:10:03","curation_rewards":10204511,"delayed_votes":[],"delegated_vesting_shares":{"amount":"797153320753","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"22531544153374","last_update_time":1619017230},"governance_vote_expiration_ts":"2022-11-02T15:16:03","hbd_balance":{"amount":"10497","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-26T04:18:03","hbd_seconds":"39172278360","hbd_seconds_last_update":"2021-04-19T21:46:06","id":191152,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-11-17T00:56:12","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-21T15:02:06","last_post_edit":"2021-04-21T15:02:06","last_root_post":"2021-04-21T03:25:54","last_vote_time":"2021-04-21T15:00:30","lifetime_vote_count":0,"memo_key":"STM5neaa5RDhS4gDbahAjBHAzPdo74sF7R7hHrZXsWiRUh26MLjcb","mined":false,"name":"brian.rrr","next_vesting_withdrawal":"2021-04-28T00:29:36","owner":{"account_auths":[],"key_auths":[["STM5Hkaq6kpDrpjAfyAp53ioyaXSLeRC1NTzko8v24uwwQkVXnNCd",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3143,"post_voting_power":{"amount":"92021338489342","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["busy.app",1],["ewd",1],["hive.blog",1],["leofinance",1],["steemhunt.com",1],["streemian",1]],"key_auths":[["STM4x3NrFep6yBUmyEVM3jgvJX3itMEFYKzEwR8rJPsVL86eFiUiM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":38924190,"proxied_vsf_votes":[0,0,0,0],"proxy":"kingscrown","received_vesting_shares":{"amount":"73666204857246","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"12748","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"83178332946","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"43991","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"24637104385955","vesting_shares":{"amount":"19152286952849","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1895161875843","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"81721407109245","last_update_time":1619017230},"withdraw_routes":0,"withdrawn":"7580647503372","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6A57ZeDbWaX9dHZDeZa99aTZK4Mc4tr4mc6eC9HPwLquFpkYM3",1]],"weight_threshold":1},"balance":{"amount":"3033394","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-11-10T20:54:00","curation_rewards":135389,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"1977738965533","last_update_time":1592072406},"governance_vote_expiration_ts":"2022-06-16T08:32:36","hbd_balance":{"amount":"3209","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-23T19:45:36","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-23T19:45:36","id":438661,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-07-12T15:53:03","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-08-13T23:41:24","last_post_edit":"2019-08-13T23:41:24","last_root_post":"2019-08-13T23:39:18","last_vote_time":"2020-03-20T13:26:15","lifetime_vote_count":0,"memo_key":"STM6BU14VBDf2bVjE9VUQiVynFjQFYwPqPcYQhQRTFhK5He8HCYbX","mined":false,"name":"brianturner","next_vesting_withdrawal":"2021-04-27T17:13:36","owner":{"account_auths":[],"key_auths":[["STM7QSHBBJqy5ZdDen1grJXSqL7XvBhJ7vNeYkeprQLC71kGdLQ2m",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1264,"post_voting_power":{"amount":"2403947928213","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["dlive.app",1],["dmania.app",1],["esteemapp",1],["minnowbooster",1],["nextcolony",1],["steem-plus-app",1]],"key_auths":[["STM63CoSqAFqG3e3EXck6AfF1bqyshCMga8uFFUbWmNA5oMG2wiW2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3629170,"proxied_vsf_votes":[0,0,0,0],"proxy":"teamsteem","received_vesting_shares":{"amount":"671081926071","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1174759253","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"597","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"7159110314089","vesting_shares":{"amount":"1732866002142","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"550700793392","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"7910955862133","last_update_time":1592072406},"withdraw_routes":0,"withdrawn":"5507007933920","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5ksK6nAtQTDH6iG99K54tDy4ZQZXf6FzgW1px3QnD7ofSwLZUd",1]],"weight_threshold":1},"balance":{"amount":"1629417","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-22T23:59:48","curation_rewards":968765,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6485728729522","last_update_time":1584711120},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"51714","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-10-24T03:34:12","hbd_seconds":"0","hbd_seconds_last_update":"2018-10-24T03:34:12","id":30065,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-08-16T05:47:24","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-03-03T02:54:09","last_post_edit":"2018-03-03T02:54:09","last_root_post":"2018-03-03T02:54:09","last_vote_time":"2020-03-20T13:32:00","lifetime_vote_count":0,"memo_key":"STM5JhP8ApfmChZziBEP2VQao3bq8oLCAAuun4DkxbGN2fVSYgQ4b","mined":false,"name":"bridgetbunchy","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7B4gTbWmQGX9TFQ7pH3KND2hL3x8Ayk6mjoqVDbhMH3Ln9waeB",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":921,"post_voting_power":{"amount":"25942914918089","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1]],"key_auths":[["STM5Vndip7Bpv9XkVUJCbFkByg6hgBXxMSaT5WzVJS3owRcwbVmgn",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":35409600,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"1576431773301","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"799344","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"25942914918089","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"12017255397035","last_update_time":1584711120},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM66TEzfCB3QK1F5DouV9ZVSwnM2SXt9SmkyLuu9DZTmk71yHC6o",1]],"weight_threshold":1},"balance":{"amount":"3683898","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-21T15:30:39","curation_rewards":5,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":1218925330,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1672","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:15","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":324400,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-10-21T21:16:06","last_owner_update":"2017-08-21T21:22:21","last_post":"2017-11-06T10:50:06","last_post_edit":"2017-11-06T10:50:06","last_root_post":"2017-11-02T21:17:36","last_vote_time":"2018-01-01T17:29:51","lifetime_vote_count":0,"memo_key":"STM7rLjHAZ35exjrVJbgHvZoq52KXXc33XNwpxhDZ2Ked5KCYGFFf","mined":false,"name":"brightbrained","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM633qXdFYcnoVfpvNZ6yzdWnR4QQKKrTmEFjrwHcwp5DjXXKfPA",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":8,"post_voting_power":{"amount":"4875701320","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM52rjidG4jN7ygQtJuKebtZz53taaMFijzECHiCdN1DabQe8kzK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3730,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"4875701320","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"4875701320","last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8VymmCRWFVEso3eadmG1pFD1xJ343BieMUM4NB6YemfEzkeZ8t",1]],"weight_threshold":1},"balance":{"amount":"4793840","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-25T09:00:39","curation_rewards":7143,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1498381239},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2366","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-08-24T19:57:03","hbd_seconds":"0","hbd_seconds_last_update":"2018-08-24T19:57:03","id":221802,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2017-06-28T17:13:06","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-09-04T02:54:30","last_post_edit":"2018-09-04T02:54:30","last_root_post":"2017-08-21T06:14:30","last_vote_time":"2018-09-11T01:31:51","lifetime_vote_count":0,"memo_key":"STM6ZVvA97NkUc4p3dSDoPLhYK3MdTZdhy4Qw9ypS2gMwXu93SsXP","mined":false,"name":"briskbrisk","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6L1gppvUkUQRUKZaqFHoLYCr5HpBdP6n7WycigeNXjH3xEaqM7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":37,"post_voting_power":{"amount":"10122761567","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM4yCPXsQeCiMTd1VhVqc1Jhdsa5nGWK46t9KhkWLvoeK278ZALW",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":11302,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"823440856","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"407","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"9673086514308","vesting_shares":{"amount":"10122761567","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1536629511},"withdraw_routes":0,"withdrawn":"9673086514308","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM88J8RSFMcPiozditUwTy9PxiMv3jZ5XAn7sBtsXH18NBeaSuYF",1]],"weight_threshold":1},"balance":{"amount":"1314852","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-23T02:04:27","curation_rewards":74,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1461377067},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"202","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-07-01T18:05:06","hbd_seconds":"0","hbd_seconds_last_update":"2018-07-01T18:05:06","id":4439,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2016-07-20T13:53:15","last_owner_update":"2016-07-20T13:53:15","last_post":"2016-08-10T22:43:36","last_post_edit":"2016-08-10T22:43:36","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2016-10-02T04:21:09","lifetime_vote_count":0,"memo_key":"STM65MVe3d2MdJK3xJ1aFmxc8oWR1oAEGc25s5X9TBcdnS9fWEA33","mined":false,"name":"bro","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5ajEV5XUAU3f76gMvLBXoqqBuFB7qKPmFTegX9iyosfZ1SmDzQ",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5Mc3Jo4jWhB1Qe24KNCDGofPSY4CaaYsYh49oQMj3AntTWWZo6",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"734","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"6617784362","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"3414","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"1152488657112","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9950,"last_update_time":1475382069},"withdraw_routes":0,"withdrawn":"1152488657112","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6imkr3ZASwzWFitXkqDJa2no91dz7eSp4ohckkHV8in1kHZfoT",1]],"weight_threshold":1},"balance":{"amount":"1183640","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-08-16T17:00:33","curation_rewards":77107,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"18587583857","last_update_time":1619033139},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"16","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-09-22T23:29:00","hbd_seconds":"0","hbd_seconds_last_update":"2020-09-22T23:29:00","id":1114521,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-19T17:04:30","last_owner_update":"2018-08-16T17:02:09","last_post":"2019-10-29T17:56:45","last_post_edit":"2019-11-01T17:58:33","last_root_post":"2019-10-29T17:56:45","last_vote_time":"2021-04-21T19:25:39","lifetime_vote_count":0,"memo_key":"STM7p7u7xyySHm4MEZopW3xEVHukeUqh1U6uYu7hd44bAZbffMg8U","mined":false,"name":"bro-poker","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5DzoDFw7RLboMCEuL4SJnEWVQtLemR1QGzdSz2HgecQqV4zJHX",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":3,"post_voting_power":{"amount":"74350335429","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1],["steemauto",1],["steempeak.app",1]],"key_auths":[["STM7eLLM7H7yM5kE1hEhFPu6LXjPVvu2kE6MKLWH1DT4HYqQxwjsH",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":56861,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"ats-witness","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"26095680321","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"13580","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"5010821094055","vesting_shares":{"amount":"74350335429","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"73606832074","last_update_time":1619033139},"withdraw_routes":0,"withdrawn":"5010821094055","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8WEBcDr9167N4ng3apX7ivNEH2hbr8kbZmkpWVfvqLjMaSjmSx",1]],"weight_threshold":1},"balance":{"amount":"1249330","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-12T19:52:15","curation_rewards":640,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1497297135},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"51","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-03-11T00:28:00","hbd_seconds":"19500","hbd_seconds_last_update":"2018-03-11T00:34:30","id":185811,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-03-05T23:27:03","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-06-22T00:29:27","last_post_edit":"2018-06-22T00:29:27","last_root_post":"2017-07-06T03:48:24","last_vote_time":"2018-08-19T04:23:57","lifetime_vote_count":0,"memo_key":"STM58gGmxJK291m7W5UjKKAuhEerBqC4j4YdrCiRq4RVZnvNPanix","mined":false,"name":"brodenjohn","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM89i4mKUSrHvGzk44UfqZX3et2xTKHKFseoe6MYZ8g4kUea2fV1",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":16,"post_voting_power":{"amount":"10015574871","nai":"@@000000037","precision":6},"posting":{"account_auths":[["drugwars.app",1]],"key_auths":[["STM7XgArK1Ue8a9wHCXpRJ74Qxn3U7hzCZXxSWd96BnX3tDCLWsQx",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1047,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"445","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"9","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"2716123007","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"1315","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2494789511237","vesting_shares":{"amount":"10015574871","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1534652637},"withdraw_routes":0,"withdrawn":"2494789511237","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7ASVacUFfWKnbciSsavS6daZHrDCrESR8WLH2qGL8q7SrznCik",1]],"weight_threshold":1},"balance":{"amount":"2604759","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07-25T15:49:27","curation_rewards":5250,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1469461767},"governance_vote_expiration_ts":"2022-08-26T02:10:00","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:15","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":34846,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-08-04T22:15:06","last_post_edit":"2016-08-04T22:15:06","last_root_post":"2016-08-04T21:11:00","last_vote_time":"2016-08-16T14:19:15","lifetime_vote_count":0,"memo_key":"STM6phw8dG4apnxY8rm3tFLmG67k9DKCGhaQpq6ZtLLa3xhcS3wK7","mined":false,"name":"brookdemar","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8LbLtM4Fa5hdoehgnHT5Z9ECjDUbaWf5gnpDRFtFZ9Kztxy59R",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":42,"post_voting_power":{"amount":"515730534765","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8mtc3c6zSnBtjqcDCNvJFfpPRbrZA31ZQ2xETPXRqWjcHtrHvs",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":4490588,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"8544109482589","vesting_shares":{"amount":"515730534765","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9949,"last_update_time":1471357155},"withdraw_routes":0,"withdrawn":"8544109482589","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM7tW9zQq5RmZo1f6DM3PdiQu2JZfUkz3BBzPE5WquhtiHF9CHaW",1]],"weight_threshold":1},"balance":{"amount":"1300025","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-05-24T16:10:09","curation_rewards":47395,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"768141062364","last_update_time":1619033151},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"6","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-08-18T21:30:57","hbd_seconds":"0","hbd_seconds_last_update":"2020-08-18T21:30:57","id":1277512,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-19T18:15:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2021-04-21T19:25:51","lifetime_vote_count":0,"memo_key":"STM8bpT8zfvbw715QMqJ5EW91VZJGuSvsXjiRXcym1o5T4bcPop8u","mined":false,"name":"brosgn.fund","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8S3EiAGk63SrvmqsoZDKSNK6sCP9ea2F3mmLrWSU3MQ1VS6eg2",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"3072564249457","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1],["steemauto",1]],"key_auths":[["STM8RxP21PSspJwMxYt2DPFwG5PyBgMZs7w1vmeVi6MvBsFzsodzL",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"ats-witness","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"76495206965","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"39810","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"3072564249457","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3041838606962","last_update_time":1619033151},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7pELUk15C1MYxpRuvJRncUGAMiB1rBiF9VtRG5Dm9TUQeueN8B",1]],"weight_threshold":1},"balance":{"amount":"1582839","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-26T02:48:00","curation_rewards":22394,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":2448686716,"last_update_time":1595136342},"governance_vote_expiration_ts":"2022-08-28T05:22:24","hbd_balance":{"amount":"167","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-02-29T16:25:27","hbd_seconds":"264491928","hbd_seconds_last_update":"2020-03-19T00:21:51","id":528127,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-11-25T00:26:15","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-07-19T04:25:39","last_post_edit":"2020-07-19T04:25:39","last_root_post":"2020-07-19T04:25:39","last_vote_time":"2020-07-19T05:25:42","lifetime_vote_count":0,"memo_key":"STM6vGUK8C9rjcdEsdzr5jP16aBEcDNq3phyzRcy15yYP4nAzYGC9","mined":false,"name":"brunch","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM86VXNdcc5yepuaaZZabs23ZzBG6GvaXejHg7NRpETW2whSBGCz",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":714,"post_voting_power":{"amount":"9794746864","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["busy.app",1],["dclick.app",1],["dist.one",1],["drugwars.app",1],["dtube.app",1],["ntopaz-artisteem",1],["peakmonsters.app",1],["steembeem",1],["steemhunt.com",1],["tasteem.app",1]],"key_auths":[["STM8NpRP8ZkkpARHPs4zrHem5ifR4X5tje88agahibzQwRERAXiEC",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":482850,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3088468279694","vesting_shares":{"amount":"9794746864","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"9598851926","last_update_time":1595136342},"withdraw_routes":0,"withdrawn":"3088468279694","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM7dvXKifrUtoDTJR5Mpc7xThcoad962vRmj4v9mmGhVDVddsDHG",1]],"weight_threshold":1},"balance":{"amount":"1847633","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-20T22:07:54","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1521583674},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"508","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-07-12T09:35:33","hbd_seconds":"2031432","hbd_seconds_last_update":"2020-07-12T09:36:27","id":878415,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2018-06-24T02:54:33","lifetime_vote_count":0,"memo_key":"STM4yPDCcTTdKsnBn6DNmR7ei5RF5BLGYqYSZUt5N1QR1PzMWD5tn","mined":false,"name":"brupvoter-fund","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7gVzzDak9zfnV4B4agsFGMJQchGSywdm1KQcK8yf5pYKQGicKr",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"12245394301","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM8LTT8UCq6Dak1JjBwQX441i8vEbhCbNpye1HXFY2amZnSodPbV",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"rodrigomf","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"12245394301","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9800,"last_update_time":1529808873},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8ZSXnojcRUPZnGcsrAFnZoRDRzCo2hNwBZ3frkW7vJLNyf1fnj",1]],"weight_threshold":1},"balance":{"amount":"3356283649","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-05-26T08:29:09","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"48704391040","last_update_time":1590566586},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1385607,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6y8pU8anhsRceHHVH7TtaZAK7kvnwvgbbzpz89QMUFaHocVeEM","mined":false,"name":"bt20hivedkdnel","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7Hp7aLRpQknYuS8E1h5XdppwfxPGECVa3fjaX1i9VnQVg2kJTP",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"194817564163","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6D3wgktngqsCRU4SQDaBB6RharRmvKzvmaQkKuCBUEZ9YTc65b",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"rap7tq6vu58ujg","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"194817564163","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"194817564163","last_update_time":1590566586},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7pxfqLumHXdgHTA1vFexxic6oSeBmfjBDGLytfXN36Cc61jhaN",1]],"weight_threshold":1},"balance":{"amount":"1733791","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-08-28T19:28:24","curation_rewards":1,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":258314314,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"2","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-09T01:18:42","hbd_seconds":"0","hbd_seconds_last_update":"2020-03-09T01:18:42","id":336481,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-04-28T13:12:03","last_owner_update":"2017-08-28T19:31:33","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2017-10-10T00:34:18","lifetime_vote_count":0,"memo_key":"STM5E1bX3AeDhyfXgSu5ZggUHD1xFCJgcXddHirAuxMougq2emaRZ","mined":false,"name":"btc6for133","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM87NKxBkxu1zQNCiecw7RnXdqiggkrGpoWVbU2tdkTpXDcpE27M",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1033257255","nai":"@@000000037","precision":6},"posting":{"account_auths":[["dtube.app",1]],"key_auths":[["STM5q6RuXoF6xxZaGfDv3x3kf8ipbcc7uniuZuQb54XibwaejQoaT",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1033257255","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1033257255,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM65Fz5UHzSDv7srqe7da5jXHLXtf3r7V8A4CHCdcMNvtKsbv7oS",1]],"weight_threshold":1},"balance":{"amount":"1365707","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-08-02T22:41:45","curation_rewards":5177,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1470177705},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"127","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:15","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":44545,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-08-27T05:55:00","last_post_edit":"2016-08-27T05:55:00","last_root_post":"2016-08-05T20:18:00","last_vote_time":"2016-09-14T05:56:00","lifetime_vote_count":0,"memo_key":"STM5T4qDK87oW9kTCvxvnFT5yWacGUy6FNLhs1L5h1qwFGdxvXaA1","mined":false,"name":"btctravis","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8e4mrHex1DY7vEQHxhvphuGuQqJtvEBHr5D51KSrKmeKRNHrf1",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":12,"post_voting_power":{"amount":"8194739977","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM55x7jLXZXpu5YZbXnd8vJ5YaLiLvzULN8o9J8A3S3KPFNzQVw2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1510653,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"2900923679911","vesting_shares":{"amount":"8194739977","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9949,"last_update_time":1473832560},"withdraw_routes":0,"withdrawn":"2900923679911","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM54hAhDwRs6AqNz7HxDVmchBVNygqfyT9CdruX3eBe4TMqDxziR",1]],"weight_threshold":1},"balance":{"amount":"2764393","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-02T17:59:12","curation_rewards":1637,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1464890352},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-01-22T11:05:15","hbd_seconds":"0","hbd_seconds_last_update":"2020-01-22T11:05:15","id":10722,"is_smt":false,"json_metadata":"","last_account_recovery":"2016-07-22T01:39:36","last_account_update":"2016-07-22T01:39:39","last_owner_update":"2016-07-22T01:39:36","last_post":"2016-09-29T22:12:09","last_post_edit":"2020-01-22T11:24:03","last_root_post":"2016-09-07T15:26:12","last_vote_time":"2018-02-01T01:51:15","lifetime_vote_count":0,"memo_key":"STM81PsxAdPmWAGffSjyFESGfRckY3hiYVrUZwUFzKTf7tYYLkZiS","mined":false,"name":"btcturbo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5WQ3QFFdnVuL56oRVoq91oqCrLhRN9bUFY4hYEFbJ5QiHV9cYd",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":79,"post_voting_power":{"amount":"9826025377","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7TND3FvBH5vySS9hYrTvPgSdtsECaENHCxRbGCpAjVEm7uJzRv",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":10839,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"106357952","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"52","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3607873457829","vesting_shares":{"amount":"9826025377","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9411,"last_update_time":1517449875},"withdraw_routes":0,"withdrawn":"3607873457829","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5KjB3qDwCw1cZEvcH8vepYqr6KYm1cgUz4BoNpdhPcAiu3XhoW",1]],"weight_threshold":1},"balance":{"amount":"1252933","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-06-04T18:56:18","curation_rewards":4893,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1465066578},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1731","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-06-02T10:39:15","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":10941,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2016-08-30T21:58:12","last_post_edit":"2016-08-30T21:58:12","last_root_post":"2016-08-20T15:00:00","last_vote_time":"2017-08-10T08:31:18","lifetime_vote_count":0,"memo_key":"STM4wzRuUh1rWzFvBKFQDxjZM8hwbkRL4F8MnQP57ujYa5QFdh9Qg","mined":false,"name":"btotherest","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8Stroo7u7ksFJSJFZmBNjLwoa6ronF35ckAxApzC4kSjRRMGHj",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":241,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM71wFTSndDp8qFuvvwJedaQJeH84owzrB1gPLDzEvG85kiHpQdd",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":696420,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"28891341","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"14","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"1987639228597","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9822,"last_update_time":1502353878},"withdraw_routes":0,"withdrawn":"1987639228597","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7mvoNGdFHQv3txf8LTDzVGXwMK8S7KvoTg9JL8XBbAaPcLGh77",1]],"weight_threshold":1},"balance":{"amount":"5661129","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-24T00:32:15","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1461457935},"governance_vote_expiration_ts":"2022-07-11T14:54:27","hbd_balance":{"amount":"100004","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-07-03T16:53:54","hbd_seconds":"0","hbd_seconds_last_update":"2018-07-03T16:53:54","id":4706,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2016-08-13T04:05:27","last_owner_update":"2016-08-13T04:05:27","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2016-04-24T01:40:12","lifetime_vote_count":0,"memo_key":"STM6V2jJaa6Y6RpGL7Zupjf1GStBVuwWqkLqjWc4T7ySjXEgmxwFq","mined":false,"name":"bts-steem","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5kcnu6TsVwUxrKkiP4mUrY4vZ6zkQS2wUVTb3fWjpXn66URfG4",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5tDzRLQyrLEaoD8TrFyxABTZQocC9LoW9vuGfzftv3XvnZEJan",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"30573024000022","vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9949,"last_update_time":1461462012},"withdraw_routes":0,"withdrawn":"30573024000022","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM8EBPDaQpk3Ba1ZxfTm6JULrGmLbt5raeDsRjoKdYHsn2TB7QZK",1]],"weight_threshold":1},"balance":{"amount":"3648743","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-08-25T07:52:54","curation_rewards":1098701,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":2382889238,"last_update_time":1618704396},"governance_vote_expiration_ts":"2022-10-06T17:08:54","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2021-01-17T06:26:30","id":1311567,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-05-11T15:44:30","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2021-04-18T00:06:36","lifetime_vote_count":0,"memo_key":"STM8RW57W8YjKn7gp2GFH7jrxsJLvcyK2AVCkUBaoVJqEgrRXupvo","mined":false,"name":"btscn","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM73WYYvntZHb1YzLvzsWEhgZ4EFW3vHwnHA754nRQsh9pWDwvAF",1]],"weight_threshold":1},"pending_claimed_accounts":2,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"9531556953","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1],["steemauto",1]],"key_auths":[["STM8d7MTGCnimoctP6TDkHFYCoBWvoErxBuZYRzi34npcygre5cW2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"lebin","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"109524726329","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"57605","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"6925232710196","vesting_shares":{"amount":"9531556953","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"9340925813","last_update_time":1618704396},"withdraw_routes":0,"withdrawn":"6925232710196","witnesses_voted_for":24},{"active":{"account_auths":[],"key_auths":[["STM84c9t35s74MKUYALRZUw5US4u8YKLemh69pNfrgtnJRWSFyqRv",1]],"weight_threshold":1},"balance":{"amount":"27613263","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-23T02:09:48","curation_rewards":10411913,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"6451876033794","last_update_time":1619035176},"governance_vote_expiration_ts":"2022-06-26T00:21:39","hbd_balance":{"amount":"14184","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-21T14:15:12","hbd_seconds":"0","hbd_seconds_last_update":"2021-04-21T14:15:12","id":215245,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-11-28T06:58:00","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-04-16T07:54:33","last_post_edit":"2021-04-16T07:54:33","last_root_post":"2019-11-24T15:07:21","last_vote_time":"2021-04-21T19:59:36","lifetime_vote_count":0,"memo_key":"STM5byvFyBKJgumy37axcx7UNGUNGRuDqmpPfyrM7E3K3EPqaXNaJ","mined":false,"name":"bubke","next_vesting_withdrawal":"2021-04-27T02:43:57","owner":{"account_auths":[],"key_auths":[["STM68ARb9r48zvZDanu5UTEsipN97x4m2QW1ExCvJHPDnh397CqH4",1]],"weight_threshold":1},"pending_claimed_accounts":14,"pending_transfers":0,"post_bandwidth":0,"post_count":2758,"post_voting_power":{"amount":"34017389158725","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["busy.app",1],["dpoll.xyz",1],["dtube.app",1],["foreversafe.app",1],["haveyoubeenhere",1],["partiko-steemcon",1],["peakmonsters.app",1],["steem-bounty-app",1],["steemauto",1],["steemhunt.com",1],["steemknights",1],["steempeak.app",1],["streemian",1],["tasteem.app",1],["threespeak",1],["utopian.app",1]],"key_auths":[["STM8cv4hZqMbGTBGkKc64FcFcQVchuSsT4EHduFWn88eWQ1686zp2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":694592,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"19011461652","nai":"@@000000037","precision":6},"recovery_account":"ula.ocean","reset_account":"null","reward_hbd_balance":{"amount":"21","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"91178391955","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"48210","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"106728505306113","vesting_shares":{"amount":"33998377697073","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"8209885023548","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"25291354052473","last_update_time":1619035176},"withdraw_routes":0,"withdrawn":"73888965211932","witnesses_voted_for":28},{"active":{"account_auths":[],"key_auths":[["STM6hopzGZZ4uKDLMXseEhaWGginswFTW3faRh5CrVZnyQ2PrkqQ5",1]],"weight_threshold":1},"balance":{"amount":"13767595","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-04-11T07:14:06","curation_rewards":9293580,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2513083014856","last_update_time":1589379339},"governance_vote_expiration_ts":"2022-10-05T07:15:21","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-05-01T14:21:12","hbd_seconds":"0","hbd_seconds_last_update":"2020-05-12T12:27:09","id":1699,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-07-10T13:16:18","last_owner_update":"2016-12-14T22:07:12","last_post":"2020-03-09T19:42:30","last_post_edit":"2020-03-09T19:42:30","last_root_post":"2019-09-20T00:44:24","last_vote_time":"2020-05-13T14:15:39","lifetime_vote_count":0,"memo_key":"STM58j6W3s19qvjf1bwVyLPDMDmNToB5X3EV5QaKYV8UkwsmJnmN7","mined":true,"name":"bue","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5BcL7kKPKBm71ZeRHXHVYeeotsa6EsiFYpVTznQ8JDbVf9eprt",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":108,"post_voting_power":{"amount":"1114379473685","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6fwyfZ2xzaxvoWq1Q5jUaQtEpQCBXuZzYMHCTMbkugCYWoygw2",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":59650,"proxied_vsf_votes":[980760178,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"15450765194","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"7923","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"116193383614777","vesting_shares":{"amount":"1114379473685","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"7674652694915","last_update_time":1589379339},"withdraw_routes":0,"withdrawn":"116193383614777","witnesses_voted_for":26},{"active":{"account_auths":[],"key_auths":[["STM5HZ1BCZdR12tGp7W2DkQMfBc177jtct4s6qEXmThBcqz8iSGaW",1]],"weight_threshold":1},"balance":{"amount":"1513739","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-07-27T13:37:48","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1532698668},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1085545,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8T3USAzsyhGExLUK4xMD7eEFicgJT7SGUU1Z19WC17GYLNveXX","mined":false,"name":"bufahed","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM54qS1CUydtHRNZuAYMkT569mCbvrrdfwXQHRg1LhEsbGbsLBJK",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"151117","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7nqdg3T1Af3WF5VTVk6nsB7rY57sAEif1qW9craPMe5o4mRyRU",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"694240000000","vesting_shares":{"amount":"151117","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3008373988157","last_update_time":1548270642},"withdraw_routes":0,"withdrawn":"694240000000","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5S8owhQk4zUZyH9nQ61JLcbqpZ5BWEWpeV6DrYC9npK7rFNEgQ",1]],"weight_threshold":1},"balance":{"amount":"3530865","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-07T21:10:36","curation_rewards":696655,"delayed_votes":[],"delegated_vesting_shares":{"amount":"1225945809984","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"599311367157","last_update_time":1609749849},"governance_vote_expiration_ts":"2022-10-30T18:19:42","hbd_balance":{"amount":"196540","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-01-31T23:44:21","hbd_seconds":"0","hbd_seconds_last_update":"2021-04-04T08:24:30","id":245037,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-07-22T01:46:51","last_owner_update":"2018-09-13T09:19:06","last_post":"2020-11-14T08:09:57","last_post_edit":"2020-11-14T08:09:57","last_root_post":"2020-11-14T08:09:57","last_vote_time":"2020-09-29T09:00:24","lifetime_vote_count":0,"memo_key":"STM5sDcbXT4oBuU2ixvtbyHUWubNAHfbuvH87Sd32f4XiyWaK4HNU","mined":false,"name":"buildteam","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM71Y4Ptw87Rhm22EiTH3hJWGTK9TRxZPkN8AYzhr3e4ZUy5SMas",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":131,"post_voting_power":{"amount":"2397245468628","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["minnowbooster",1]],"key_auths":[["STM6artY3XtoApzTF8gbkxei9uyQNKzFd5G4CwggczWPcLWRGxfeg",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":12625562,"proxied_vsf_votes":["47803660008650","427682041297",0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"minnowbooster","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"958","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2021-04-01T08:24:30","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2021-04-01T08:24:30","savings_withdraw_requests":0,"to_withdraw":"7454955843714","vesting_shares":{"amount":"3623191278612","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2397245468628","last_update_time":1609749849},"withdraw_routes":0,"withdrawn":"7454955843714","witnesses_voted_for":22},{"active":{"account_auths":[],"key_auths":[["STM6Sc7qfqd8PFs3tKURtSwvdxTVC1iLbUJoSczB8SEHLEM33fbBX",1]],"weight_threshold":1},"balance":{"amount":"1147754","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-07-19T10:13:36","curation_rewards":49076,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"703513960930","last_update_time":1612950798},"governance_vote_expiration_ts":"2022-09-07T21:07:21","hbd_balance":{"amount":"30308","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-02-10T09:53:18","hbd_seconds":"659568","hbd_seconds_last_update":"2021-02-13T10:03:00","id":268710,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-08-14T08:38:54","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-03-07T09:19:33","last_post_edit":"2020-03-07T09:20:24","last_root_post":"2020-03-07T09:19:33","last_vote_time":"2020-03-14T11:50:48","lifetime_vote_count":0,"memo_key":"STM58NE2uCCtGQ9QL54fY7pPjir26Zw46zsSj16wmw9HwiopT5PcD","mined":false,"name":"bunnypunia","next_vesting_withdrawal":"2021-04-28T09:55:21","owner":{"account_auths":[],"key_auths":[["STM5iu75YrfmBAumQRzCszaP5exxu9jKs6YGzwHUcGbWwvjEKehDr",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1341,"post_voting_power":{"amount":"649397502394","nai":"@@000000037","precision":6},"posting":{"account_auths":[["minnowbooster",1],["smartsteem.app",1],["steemhunt.com",1]],"key_auths":[["STM5FQsEZYRk6MhYZJKAbxgQzz5dDTKXzzzXKXiSYjoN8rWvvxVz3",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":1101412,"proxied_vsf_votes":[0,0,0,0],"proxy":"firepower","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2021-02-10T09:53:42","savings_hbd_seconds":"16911864","savings_hbd_seconds_last_update":"2021-02-10T10:03:00","savings_withdraw_requests":0,"to_withdraw":"2814055843724","vesting_shares":{"amount":"649397502394","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"216465834133","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2814055843724","last_update_time":1612950798},"withdraw_routes":0,"withdrawn":"2164658341330","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6XSkffgS5H3iFTfiehTTpbFJfHxeBvuEHi4J3xcxvu2SNCTfDS",1]],"weight_threshold":1},"balance":{"amount":"1813605","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-08T08:11:27","curation_rewards":552619,"delayed_votes":[],"delegated_vesting_shares":{"amount":"2080200328416","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"2961832949672","last_update_time":1619037570},"governance_vote_expiration_ts":"2022-11-15T22:32:09","hbd_balance":{"amount":"30395","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-11T21:00:21","hbd_seconds":"6947660775","hbd_seconds_last_update":"2021-04-20T12:32:42","id":482731,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2021-03-21T22:44:57","last_owner_update":"2019-05-14T23:09:00","last_post":"2021-04-21T08:55:00","last_post_edit":"2021-04-21T08:55:00","last_root_post":"2021-04-20T20:41:15","last_vote_time":"2021-04-21T20:39:30","lifetime_vote_count":0,"memo_key":"STM8QrLCL9naq478N96nKNjeYf9hy387F5Ank7i7ERNpKFydiL3RB","mined":false,"name":"burlarj","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5Gsqs9tYWtjATbccuqre7jKzSnrFLtZ3Q6paU43oziL9RWZxJV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":5347,"post_voting_power":{"amount":"11847331798689","nai":"@@000000037","precision":6},"posting":{"account_auths":[["actifit.app",1],["busy.app",1],["dclick.app",1],["dlike.app",1],["dmania.app",1],["dpoll.xyz",1],["dreply",1],["drugwars.app",1],["esteem-app",1],["esteemapp",1],["fundition.app",1],["leofinance",1],["oracle-d",1],["partiko-steemcon",1],["peakd.app",1],["peakmonsters.app",1],["smartsteem",1],["steemauto",1],["steemhunt.com",1],["steempeak.app",1],["threespeak",1]],"key_auths":[["STM5Kk1A3AH7R2Jkey7F3TirsM22WrteDCnu7JkaVNd6aNJitb4yP",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":10787743,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"neoxian","reset_account":"null","reward_hbd_balance":{"amount":"2190","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"15280489334","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"8082","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2021-03-05T20:52:57","savings_hbd_seconds":"5872995522","savings_hbd_seconds_last_update":"2021-03-06T14:59:36","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"13927532127105","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"8451265154516","last_update_time":1619037570},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":18},{"active":{"account_auths":[],"key_auths":[["STM7Q1ynrFsPypW84Zy13C1ywYxPNvShG7fkf7r64CLuVq7DHapH2",1]],"weight_threshold":1},"balance":{"amount":"3892959","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-03T03:59:57","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1496462397},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":175127,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7xZMuLw9QrDPDooy4ct9xDradeUKWXA5nHtRF68JFaYBp2qvZ7","mined":false,"name":"bush2612","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8TPynUN8a3qPXNv1wkgTCUizN7TaEHi2n8TtS8JDjWQXXMCyeu",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"9977744892","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6bd5KCnjC741RN8YwMt2ZCqUJSQFmVeavWQNeBLsMDyWUpoN34",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"11177677396290","vesting_shares":{"amount":"9977744892","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1496462397},"withdraw_routes":0,"withdrawn":"11177677396290","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7zqRPwsSgFqUYm4JpzJFa5qHGxjvEnjHan6VrpXoeHLMXf7MGY",1]],"weight_threshold":1},"balance":{"amount":"2720910","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-07-09T22:08:51","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"87613387455","last_update_time":1581318933},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"63243","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-01-30T03:24:42","hbd_seconds":"60393932883","hbd_seconds_last_update":"2020-02-10T07:15:33","id":1291474,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-07-10T08:09:03","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-02-02T08:04:21","last_post_edit":"2020-02-21T18:14:36","last_root_post":"2020-02-02T08:04:21","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7zvW4hZ6cuL6VQkedUzYjMr21aXowVhYs49AhBBMCYTe6Gph1E","mined":false,"name":"buskapatriot","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6cdvuzjo4JbaAvicBLM9WXseKZUwXB3FyvNjV9MYAHiY6QVsjX",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":153,"post_voting_power":{"amount":"350453549822","nai":"@@000000037","precision":6},"posting":{"account_auths":[["threespeak",1]],"key_auths":[["STM7RAKGgGmQp59pBXDEHxFtSHMacBs8bGxFE1BLwakzSHUNoqmwy",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":354267,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"oracle-d","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"350453549822","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"350453549822","last_update_time":1581318933},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6QDSJ4vmuNQKP5Uryi4UGKY368dmrMaABiUF5UFNTdfGoqoyrZ",1]],"weight_threshold":1},"balance":{"amount":"2829984","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-11-02T17:00:00","curation_rewards":6279529,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4353899030767","last_update_time":1596237345},"governance_vote_expiration_ts":"2022-11-26T20:20:45","hbd_balance":{"amount":"6315","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-07-22T13:03:03","hbd_seconds":"431964945","hbd_seconds_last_update":"2020-07-23T08:03:06","id":108853,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-01-01T14:40:18","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-11-05T13:17:15","last_post_edit":"2018-11-05T13:26:18","last_root_post":"2018-11-05T13:17:15","last_vote_time":"2020-07-31T23:15:45","lifetime_vote_count":0,"memo_key":"STM8L2uBbK9zQ8xA9giBTm2ecrmHjwYskL1hU2vL21AeHyHGvb1CW","mined":false,"name":"busy.org","next_vesting_withdrawal":"2021-04-26T18:24:06","owner":{"account_auths":[],"key_auths":[["STM5nkNbQCNsB7yFFeK4F7o69uDfD21LUZAVbWJRiziUoA314X1T4",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10000,"post_count":23,"post_voting_power":{"amount":"5365225965353","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1]],"key_auths":[["STM59zwAmbMWXk4mPFon5ZynXFwmF4UrWrmkNaxWbhNKsD91rJ3cj",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":38223636,"proxied_vsf_votes":["16881183114580","145260439689",0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"busy.app","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"20943392694","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"10814","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"17406090227803","vesting_shares":{"amount":"5365225965353","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1338930017524","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"17066729134595","last_update_time":1596237345},"withdraw_routes":0,"withdrawn":"12050370157716","witnesses_voted_for":7},{"active":{"account_auths":[],"key_auths":[["STM7vvT3yvL1tSUpZ2x1EtS7KjeXikDAzPy4rAWdRT7qw9M1tt2NG",1]],"weight_threshold":1},"balance":{"amount":"2243334","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-09-10T07:23:09","curation_rewards":58499059,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"3451837718208","last_update_time":1596237546},"governance_vote_expiration_ts":"2022-07-27T07:41:33","hbd_balance":{"amount":"16891","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-07-22T13:03:09","hbd_seconds":"1155243054","hbd_seconds_last_update":"2020-07-23T08:03:03","id":88277,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-02-26T07:51:21","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"2020-07-31T23:19:06","lifetime_vote_count":0,"memo_key":"STM822qUR8uRfi6FpdGKZdZ5oYRDDnG8u15VMUZU9FQ2LvNYDSBfe","mined":false,"name":"busy.pay","next_vesting_withdrawal":"2021-04-26T18:24:24","owner":{"account_auths":[],"key_auths":[["STM7B6NMgfRAowVNyRuYPTnu76ciSGrbsdP5eWxHmQkhLZPqRkecw",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"4254996805753","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1]],"key_auths":[["STM5CdF23D45ZAmYEjdkQH1yZFtcwmbQC61n6qPTiQPqw4FxaiTta",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"16878092312","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"8715","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-05-08T17:19:42","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-05-08T17:19:42","savings_withdraw_requests":0,"to_withdraw":"13797844763554","vesting_shares":{"amount":"4254996805753","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1061372674120","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"13531203855376","last_update_time":1596237546},"withdraw_routes":0,"withdrawn":"9552354067080","witnesses_voted_for":1},{"active":{"account_auths":[],"key_auths":[["STM59hFMmsKHSEhYdfQoqwmUDWQrtCxmyXxQAgjr14yQSxRQME7M3",1]],"weight_threshold":1},"balance":{"amount":"8915065","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-09-15T11:59:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"13710614593581","last_update_time":1583142921},"governance_vote_expiration_ts":"2022-07-10T19:36:18","hbd_balance":{"amount":"23","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-07-11T03:53:33","hbd_seconds":"0","hbd_seconds_last_update":"2018-07-11T03:53:33","id":92230,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-02-25T19:35:39","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM67v6jfTTGdTKEARit9LJJ9TKuMyiP7WhdGjiB8SSRpWWbC4unH","mined":false,"name":"busy.witness","next_vesting_withdrawal":"2021-04-26T18:23:42","owner":{"account_auths":[],"key_auths":[["STM8kGo2daMxaNVrBSbV2iht7tyFyHyqwY4xVvgjGLRKyuREimue9",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"16881183114580","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1]],"key_auths":[["STM7wYFiGCpJqcjFWHmF3dJbUaggGENqDweVNci8BiTdCa6YPoXs7",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":["145260439689",0,0,0],"proxy":"busy.org","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"54832953152962","vesting_shares":{"amount":"16881183114580","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"4217919473305","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"54842458374325","last_update_time":1583142921},"withdraw_routes":0,"withdrawn":"37961275259745","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6ciNFr3ft6rLmks1ZmNv9jqYNo11XfZhNcYbSQiSzCTZ7sMLU6",1]],"weight_threshold":1},"balance":{"amount":"5038941","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-06-18T10:11:36","curation_rewards":371,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"774352455576","last_update_time":1577218014},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-10-24T09:39:18","hbd_seconds":"0","hbd_seconds_last_update":"2019-12-24T20:03:42","id":1286040,"is_smt":false,"json_metadata":"","last_account_recovery":"2019-10-04T08:24:18","last_account_update":"2019-10-07T05:19:48","last_owner_update":"2019-10-05T01:53:15","last_post":"2020-01-20T08:56:45","last_post_edit":"2020-01-20T08:56:45","last_root_post":"2020-01-20T08:56:45","last_vote_time":"2019-12-24T20:06:54","lifetime_vote_count":0,"memo_key":"STM7XkF43ZEop3NznWxygMCFcynMAD1YasNt9Tnnex8vfY2vttvWn","mined":false,"name":"buzzi","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8fB9YJupSdssbiy71uNDFy7haeJzbSS7Weyyhp8i795XS46cc5",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1173,"post_voting_power":{"amount":"3097409822304","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buzzi.app",1]],"key_auths":[["STM5P76362zmEKffR2mfSab85VCvQ58UxzuPPA3iFtYg4vWAsYhxb",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":3106298,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"kevinms","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"2649","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"5211929301","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"2651","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"3097409822304","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"3095061649149","last_update_time":1577218014},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8ATuFQFCzDq9c6rD3qreZX5uXeHnCoizrNUau3V8M8viurUNa2",1]],"weight_threshold":1},"balance":{"amount":"16744791","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-08-01T08:59:51","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":50667467,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1098082,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-26T09:39:03","last_owner_update":"2020-04-26T09:39:03","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8KBNdr4C3di6WwsVKjfewu1waMgPH1DM9a9gFcP7cqqYv4QcKN","mined":false,"name":"bvba","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7RNKXZCGwViv4Gh5LTApydeViL1bGYfYExGvDbaSFAuekQzPaN",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"202669865","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7S2JEMeCX2xLUJAJ1sdo4Ka5whTfeNskuSJ562ibfuBM4Gk6FB",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"202669865","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":202669865,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5FjPNsvznScHX12u41j5cE1uhjqZqtK2FySZGHuFV4iGCXzCWN",1]],"weight_threshold":1},"balance":{"amount":"1184945","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-03T14:03:15","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":257721428,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-01T12:25:54","id":349509,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7nWpRiE7vFmDAnprWrmQWu78itrNHZjkctjP7moZtoojDK5TEn","mined":false,"name":"bxm","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM4xX2YM2GganvGV2ZMBev3BLfHyr3NyEy5FfvdSHvShvsp4os7Y",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"1030885714","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5PHbA4c7qDf82PxJo4PwqeNCjs16HcQtvBWgUKEvfA1MJUXmuK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"1030885714","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":1030885714,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7We1aeYnke3s9YyaMdgUsBrKrH86ELAmcuJLgvwciq2MwCp4DP",1]],"weight_threshold":1},"balance":{"amount":"1777951","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-10-11T02:53:27","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1327375,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM8LFZ4P971SvcbpHaWMPx1toSDtZPS7abpuvUiLmCVUeZQ1N7Zi","mined":false,"name":"bxscikai","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7zcYEtxTnbJqbCdzr3htenqPxESvrFMxiqh9fpDK6yogQ3A1AM",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM5C6YtrfhUksvqKWivrqU1BZTYyJWCgHgLEPEW3jLkkjJUbcVMs",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM8m2sSWYqnTfwfXWp6NPEDQzaB99zmu4Hmxvhafo49DZm2A5w4S",1]],"weight_threshold":1},"balance":{"amount":"9543980","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-10-22T22:44:12","curation_rewards":0,"delayed_votes":[{"time":"2021-04-15T14:30:54","val":"18914490147"},{"time":"2021-04-20T21:26:36","val":"18905694577"}],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"9934497504","last_update_time":1618953996},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-04-15T14:17:33","hbd_seconds":"11344776810","hbd_seconds_last_update":"2021-04-21T01:53:54","id":1418009,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM7zDdWCkxz3hVbdqVf28PDx2zFLA86WHQnvGDMYq7QmoPWLCaeu","mined":false,"name":"bxy","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6soX7FxiXxLf98H2npSznvzYyCojjEA4ygvHdr35xas1mVunNf",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"39737990020","nai":"@@000000037","precision":6},"posting":{"account_auths":[["threespeak",1]],"key_auths":[["STM7FTQnQhYVDPnigrSfMjqgwVbtyPkjeoZkHqUmai9oREAvNcSfJ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"threespeak","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"39737990020","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"39737990020","last_update_time":1618953996},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5uixfUKaHT3bBXuxKSXWEJDxQ6KAyrZQnN8DZLkqbs6jZrvjgW",1]],"weight_threshold":1},"balance":{"amount":"1477801","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-12-14T12:05:03","curation_rewards":27747,"delayed_votes":[],"delegated_vesting_shares":{"amount":"153993900000","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"568019738317","last_update_time":1588375377},"governance_vote_expiration_ts":"2022-07-28T13:53:33","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-04-26T23:34:15","hbd_seconds":"673118775","hbd_seconds_last_update":"2020-04-26T23:50:00","id":495679,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-26T23:45:15","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-06-30T04:56:54","last_post_edit":"2018-06-30T04:56:54","last_root_post":"2018-04-30T19:02:12","last_vote_time":"2020-01-15T15:00:54","lifetime_vote_count":0,"memo_key":"STM82LyHR4yk2am5B1M5y9yxQKSs3ryZAvGGmk4nX7iXCvkfwJzSf","mined":false,"name":"bycoleman","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM872iE89j1H9zx9RYHpY9dHGN1d4RQkHhPV6sMDzAjpuhR2iPrX",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":4332,"post_voting_power":{"amount":"2272078953270","nai":"@@000000037","precision":6},"posting":{"account_auths":[["peakd.app",1],["steemdunk",1]],"key_auths":[["STM6pchSTfvrCWrtbFiqpb6KSo8dTn811CVJR3LFmSFJadLvgaLnK",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":564978,"proxied_vsf_votes":["2032468058860",0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"6088031177681","vesting_shares":{"amount":"2426072853270","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"2272078953270","last_update_time":1588375377},"withdraw_routes":0,"withdrawn":"6088031177681","witnesses_voted_for":15},{"active":{"account_auths":[],"key_auths":[["STM6SooLrvnGmQqaCTvzJbbJMhGRDbVFcKHXUrjmQsMfqrZzG9znw",1]],"weight_threshold":1},"balance":{"amount":"1292131","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-05-12T21:41:21","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"4667112791","last_update_time":1584712800},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"1","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"2018-06-02T10:39:15","id":157584,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5Rwy1PWeXZ5DHvAPDruQzc41zfZEi7FAEtFVFdg4X4ZtcJMxwM","mined":false,"name":"bylo","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM61u9PN6kvkQbogfrEgc1SRG9CtmeDjU56rg5iEoN4LQeUJPWK7",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"18668451163","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM6wXTgTbWx3dyeComzvGqkrrjhPAuc8cEgQuUXhP1d9skvzkgdJ",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"18668451163","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"18668451163","last_update_time":1584712800},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6tpD9TnubXEhWDJHQUnk8TRQAD2AW33x2UkENWFPoNXvzxAmYz",1]],"weight_threshold":1},"balance":{"amount":"6008028","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-02-12T02:16:39","curation_rewards":2940,"delayed_votes":[],"delegated_vesting_shares":{"amount":"19683049367150","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":119543,"last_update_time":1618923444},"governance_vote_expiration_ts":"2022-11-09T08:28:51","hbd_balance":{"amount":"44","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-04-11T23:03:42","hbd_seconds":"0","hbd_seconds_last_update":"2020-04-11T23:03:42","id":757220,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-04-07T20:14:33","last_owner_update":"1970-01-01T00:00:00","last_post":"2020-04-07T20:25:15","last_post_edit":"2020-04-07T20:25:15","last_root_post":"2019-04-17T20:05:03","last_vote_time":"2021-04-20T12:57:24","lifetime_vote_count":0,"memo_key":"STM7BwihcqBsM4ZpG4ikHBS1sFYYpmcRqbeY5v6aAEgtPaA2tNtmy","mined":false,"name":"byzantinehash","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8QSWY5P4PFFrejWrvJsud1TMwMd8b3yQrXrQQLBXfSEC8enjtM",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":492,"post_voting_power":{"amount":"478173","nai":"@@000000037","precision":6},"posting":{"account_auths":[["bottracker.app",1],["buildteam",1],["dlive.app",1],["dmania.app",1],["esteemapp",1],["peakd.app",1],["steem.app",1],["steemauto",1],["welcomebot",1]],"key_auths":[["STM6BPh1QkRY3GEuBRsv16xtHfDWAUQfqWpoL6KtW52iHY6w29WkY",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":32054,"proxied_vsf_votes":["8335347116",0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"null","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"11538242000000","vesting_shares":{"amount":"19683049845323","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":468609,"last_update_time":1618923444},"withdraw_routes":0,"withdrawn":"11538242000000","witnesses_voted_for":8},{"active":{"account_auths":[],"key_auths":[["STM6vNHPU2oiVAFJaC3YHqBEC9ZDg9fqCsp9Ag1asELZNo18xGpqy",1]],"weight_threshold":1},"balance":{"amount":"2195009","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-04-23T00:26:24","curation_rewards":1932,"delayed_votes":[],"delegated_vesting_shares":{"amount":"11115667543","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"210065980191","last_update_time":1618684074},"governance_vote_expiration_ts":"2022-10-08T18:57:30","hbd_balance":{"amount":"22463","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-28T19:32:27","hbd_seconds":"3942229824","hbd_seconds_last_update":"2021-03-30T20:17:18","id":1261873,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-02-19T00:42:57","last_owner_update":"1970-01-01T00:00:00","last_post":"2021-03-28T19:50:45","last_post_edit":"2021-03-28T19:50:45","last_root_post":"2021-03-28T19:50:45","last_vote_time":"2021-04-17T18:27:54","lifetime_vote_count":0,"memo_key":"STM59aM6rJh2nrmXPuNSMwBWHDyJyoooMqWnuBDsZPboqy6Mt1Uuu","mined":false,"name":"byzantinist","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM6Wu1gNLhoGx7fsch3JzBREeykEaEBt2yMi1WB4ogKFZkNyJPYV",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":144,"post_voting_power":{"amount":"840263920764","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1]],"key_auths":[["STM8bspdsC5fJZ2Gx4T6wTyXoRRLkxSKgv83vqYWq7i8Ae1oRkNYj",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":900888,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steemmonsters","reset_account":"null","reward_hbd_balance":{"amount":"9379","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"23393172072","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"12355","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"851379588307","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"823458642348","last_update_time":1618684074},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":21},{"active":{"account_auths":[],"key_auths":[["STM76QyCGFeREugzSwVxRY3ag6rBzWJqiFxcZ9soJUhM15sAnSkny",1]],"weight_threshold":1},"balance":{"amount":"5489903","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-06-07T19:23:45","curation_rewards":1052465,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"9009333789659","last_update_time":1596269631},"governance_vote_expiration_ts":"2022-10-27T06:09:24","hbd_balance":{"amount":"2367","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-23T21:07:33","hbd_seconds":"0","hbd_seconds_last_update":"2021-03-23T21:07:33","id":1028259,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-02-23T06:33:18","last_owner_update":"2018-06-07T19:26:18","last_post":"2020-07-23T23:59:06","last_post_edit":"2020-07-23T23:59:06","last_root_post":"2020-07-23T23:59:06","last_vote_time":"2020-07-23T14:23:06","lifetime_vote_count":0,"memo_key":"STM63t7tCLQVigrP58NGDntabjwoZU8Rk8a2DBeiVzZHv31UCTkfJ","mined":false,"name":"c-cubed","next_vesting_withdrawal":"2021-04-27T21:11:36","owner":{"account_auths":[],"key_auths":[["STM6SzKMbXaVikw868Vb6BDkorHJHwGLLqNa3SjVuethiznvCJ37b",1]],"weight_threshold":1},"pending_claimed_accounts":54,"pending_transfers":0,"post_bandwidth":0,"post_count":639,"post_voting_power":{"amount":"24964211426606","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1],["steempeak.app",1]],"key_auths":[["STM7KJRYE761rab8tA4Jou8fUHXoxY8MxAfVfFL9VFurhV37RdVHF",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":8276527,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"48959751328","nai":"@@000000037","precision":6},"recovery_account":"c-squared","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"35987652129102","vesting_shares":{"amount":"24915251675278","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"2768280933008","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"36037335158638","last_update_time":1596269631},"withdraw_routes":0,"withdrawn":"11073123732032","witnesses_voted_for":21},{"active":{"account_auths":[],"key_auths":[["STM5xF9hWNbnZqdGnGmuBqf7gzR72gYgShKriJDsWK9YzHedQdpZS",1]],"weight_threshold":1},"balance":{"amount":"1603103","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-05-27T19:08:48","curation_rewards":1825097,"delayed_votes":[],"delegated_vesting_shares":{"amount":"277392671785","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"3829872730967","last_update_time":1618892370},"governance_vote_expiration_ts":"2022-10-27T06:10:30","hbd_balance":{"amount":"3125","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-07-22T04:30:18","hbd_seconds":"3314267082","hbd_seconds_last_update":"2020-08-05T16:30:24","id":1022954,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-03-25T15:00:12","last_owner_update":"2018-06-07T18:34:24","last_post":"2020-07-30T02:00:03","last_post_edit":"2020-07-30T02:00:03","last_root_post":"2020-07-28T18:19:12","last_vote_time":"2020-07-30T01:59:48","lifetime_vote_count":0,"memo_key":"STM5QSib91BM7hUKx7bFyUBgQzy54Nat3rW7xNaTKfkYDSAJi1Rbp","mined":false,"name":"c-squared","next_vesting_withdrawal":"2021-04-27T21:09:39","owner":{"account_auths":[],"key_auths":[["STM4yUF9CJP47wb4z2T3qbwyynXc2yANwL1bxrMBJnJH2YwMXV89G",1]],"weight_threshold":1},"pending_claimed_accounts":52,"pending_transfers":0,"post_bandwidth":0,"post_count":56806,"post_voting_power":{"amount":"15319490923865","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["drugwars.app",1],["peakd.app",1],["steemauto",1],["steempeak.app",1]],"key_auths":[["STM89qzREzgvz8YGqLGHU1bjc7tLhn5iykBMcyzBdh7JBzySAn1jc",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":295893,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"1675286684023","nai":"@@000000037","precision":6},"recovery_account":"carlgnash","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"19706127348945","vesting_shares":{"amount":"13921596911627","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"1515855949919","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"15319490923865","last_update_time":1618892370},"withdraw_routes":0,"withdrawn":"6063423799676","witnesses_voted_for":21},{"active":{"account_auths":[],"key_auths":[["STM5GYjTfmprCBc1yjVNhgj91Ar8MuAHnwRTHztBGJUNr4o6THWRc",1]],"weight_threshold":1},"balance":{"amount":"1474272","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2018-03-13T19:26:09","curation_rewards":7931,"delayed_votes":[],"delegated_vesting_shares":{"amount":"15778617705052","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"125446670549","last_update_time":1584236781},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"36424","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-03-26T18:49:39","hbd_seconds":"50834952825","hbd_seconds_last_update":"2020-04-11T22:39:51","id":854967,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-07-19T12:10:06","last_owner_update":"2018-03-13T19:41:30","last_post":"2020-03-15T01:45:51","last_post_edit":"2020-03-15T01:45:51","last_root_post":"2020-02-03T21:59:33","last_vote_time":"2020-01-19T23:25:06","lifetime_vote_count":0,"memo_key":"STM6opREmXHmpUGDd9jpUCdSzoqmnZPiFXZsTmHuprC9qM3ke95ve","mined":false,"name":"cabalcoffers","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5XMRMVcYEWjizxY14AmL5chLHJ5vn2TEucDVLgz4PJCBrRe39b",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":329,"post_voting_power":{"amount":"501786682200","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1],["dlive.app",1],["drugwars.app",1],["dtube.app",1],["nextcolony",1],["smartsteem",1],["steempeak.app",1],["streemian",1]],"key_auths":[["STM5SNmFkqsPN8NHvxWf8HwJvyv2BsWSit5jtCZkDGqfuhocCd3xp",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":2080256,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"anonsteem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"16280404387252","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"501786682200","last_update_time":1584236781},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5ZQWNZxoWxwJY1vEtMzHYUfP689aWSBRgSdYRxV8gPZwT85kLJ",1]],"weight_threshold":1},"balance":{"amount":"2165773","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-13T13:14:54","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1505308494},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":367221,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM5aYHh5B6PdicgYa7QPJUk6TnAaWZF2YAFKmox89kXt8TgD8gJW","mined":false,"name":"camarante","next_vesting_withdrawal":"2021-04-22T20:46:42","owner":{"account_auths":[],"key_auths":[["STM5HF39cNQdfwvqUjsgUsxM37aqwboL7fQyay6R4osni8E9kXZBa",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"793194339156","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7npzfZYSoxpi48tWos5qcgqDbTvw52tHd2TKchPJoYPsNUHWcM",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"4855976366507","vesting_shares":{"amount":"793194339156","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"373536643578","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":10000,"last_update_time":1505308494},"withdraw_routes":0,"withdrawn":"4108903079358","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM4xqCZeuk1RAQQgPZ5HdRCZ4J8xPnWg5BjPw3eDbLN4ttV6bZ2N",1]],"weight_threshold":1},"balance":{"amount":"15733915","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2020-09-24T13:15:12","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":1436856631,"last_update_time":1606308390},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1413513,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-09-24T13:19:54","last_owner_update":"2020-09-24T13:19:54","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM6my4RieF157AKSpHLX9H119jJHeXhAwZ1LGx2ng87NcXR5GGWc","mined":false,"name":"camarbol","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM8SGQw6Pv5VvzaP1x9QPoG9zohyAZcZXZ7gMxLBeSCw7DXLit6T",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"5747426526","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7Sj7qCPVySC9Svpi9XxskqcrbBzZsXPqtC8cZQiV9Uzr6S4fkE",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"beeanon","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"5747426526","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"5747426526","last_update_time":1606308390},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM88hPEnvxkjNy3fGRYD1x1As9sRoeC2J3ExgoFLs2ptC5y2GVUM",1]],"weight_threshold":1},"balance":{"amount":"3888233","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-05-11T21:11:09","curation_rewards":2454457,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"9303710950078","last_update_time":1619024532},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"928","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2021-03-03T12:24:51","hbd_seconds":"2327421342","hbd_seconds_last_update":"2021-04-01T16:04:21","id":8363,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-05-30T16:54:45","last_owner_update":"2016-07-18T20:54:27","last_post":"2020-02-07T15:34:30","last_post_edit":"2020-02-07T15:35:12","last_root_post":"2018-07-31T19:10:21","last_vote_time":"2021-04-21T17:02:12","lifetime_vote_count":0,"memo_key":"STM7MjV8kvyvHEVQBq3vkJLqjL4BgSwTaMxL9w2Z19AHJ98oEYpv3","mined":false,"name":"camilla","next_vesting_withdrawal":"2021-04-22T16:05:57","owner":{"account_auths":[],"key_auths":[["STM82hEhbDUKrZKdaqy1FokVgijx2ifno4RwMdeCa46ebtApMRYRu",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":10529,"post_count":2473,"post_voting_power":{"amount":"40892503370424","nai":"@@000000037","precision":6},"posting":{"account_auths":[["steemauto",1]],"key_auths":[["STM4xuvroftPfdqJgkta3gHiceBUrqpVFPtvvFcd62kWS9TxKwsm7",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":22373796,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"14355905841","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"7586","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"2017-12-02T20:26:06","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"2017-12-02T20:26:06","savings_withdraw_requests":0,"to_withdraw":"47809574411416","vesting_shares":{"amount":"40892503370424","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"3677659570109","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"36470546924308","last_update_time":1619024532},"withdraw_routes":0,"withdrawn":"7355319140218","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM5gDSHhKD15hQsnyF2droWSeumK3UuPC2SdRaoNraVg1CvsfCNH",1]],"weight_threshold":1},"balance":{"amount":"14447390","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2019-10-09T14:28:57","curation_rewards":0,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1570631337},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"1970-01-01T00:00:00","hbd_seconds":"0","hbd_seconds_last_update":"1970-01-01T00:00:00","id":1326868,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"1970-01-01T00:00:00","last_owner_update":"1970-01-01T00:00:00","last_post":"1970-01-01T00:00:00","last_post_edit":"1970-01-01T00:00:00","last_root_post":"1970-01-01T00:00:00","last_vote_time":"1970-01-01T00:00:00","lifetime_vote_count":0,"memo_key":"STM64Dr62n937ubgnN1ff98iNWpV6E7iTizKtJrrB9ZMnnm9Mkbbg","mined":false,"name":"canaca","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM84epZ8gVmv3Vqj3xjvP3Efg9gY3MeNMSxXeWAtXRaX9ZPpbWLn",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":0,"post_voting_power":{"amount":"0","nai":"@@000000037","precision":6},"posting":{"account_auths":[],"key_auths":[["STM7yeVFe6Uh6p3AkdHSo7n4utS2UQ3Eud3QrshNTWdQwLtqWYEd4",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":0,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steemwallet.born","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":0,"last_update_time":1570631337},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM7Qxkcge1AEAiA5h3MrthavTRMwnxW6taRjdU9uFCu7unTkJmVp",1]],"weight_threshold":1},"balance":{"amount":"100184698","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-09-26T12:14:54","curation_rewards":1162123,"delayed_votes":[],"delegated_vesting_shares":{"amount":"115432945245262","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":"428137892364","last_update_time":1616078505},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2020-04-16T21:00:06","hbd_seconds":"998076480","hbd_seconds_last_update":"2020-04-24T16:19:42","id":385617,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2020-09-20T12:44:27","last_owner_update":"2017-09-27T07:58:54","last_post":"2020-01-19T16:57:15","last_post_edit":"2020-01-19T16:57:15","last_root_post":"2020-01-19T16:57:15","last_vote_time":"2020-03-19T17:05:54","lifetime_vote_count":0,"memo_key":"STM6rXPhZFsQbwagBe2qT7yD8me5p8TijUQwxVkrmhQfMrzSPVFBf","mined":false,"name":"cannonwar","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7GQLfzKWgnbmf3qxh2ZWHa8Pj2HshJkAdrkTWkuRE3Noyv4Jq1",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":257,"post_voting_power":{"amount":"1712551569455","nai":"@@000000037","precision":6},"posting":{"account_auths":[["buildteam",1],["cryptobrewmaster",1],["dtube.app",1],["holybread.app",1],["minnowbooster",1],["nextcolony",1],["peakmonsters.app",1],["taverngames",1]],"key_auths":[["STM5vfqUdru1vUjM8mP2AQ96YK3DNW8Na6XnJNsLXiYwZGRft5LRk",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":557242,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":0,"vesting_shares":{"amount":"117145496814717","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"1712551569455","last_update_time":1616078505},"withdraw_routes":0,"withdrawn":0,"witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM6Y3C5R2fzCeLZRTLhsjYrK5ZeAiqqruTMViiUg98srb4Efjs63",1]],"weight_threshold":1},"balance":{"amount":"2091693","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-12T22:09:48","curation_rewards":69722,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1497305388},"governance_vote_expiration_ts":"2022-10-07T08:15:21","hbd_balance":{"amount":"7599","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2019-07-28T11:23:00","hbd_seconds":"9799004916","hbd_seconds_last_update":"2019-08-12T09:48:00","id":186805,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2019-05-19T11:23:36","last_owner_update":"1970-01-01T00:00:00","last_post":"2019-08-04T09:15:06","last_post_edit":"2019-08-04T09:15:06","last_root_post":"2019-08-04T09:15:06","last_vote_time":"2019-08-04T09:17:18","lifetime_vote_count":0,"memo_key":"STM8QbTSzhuamMaE61umMvUyZKbmB48RVsbxbTjYcBL1ovnajC9VW","mined":false,"name":"cantribute","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM5TuA4gwvwwqkjNdQmQjBrkYNwKYLgDnDeStxfbZ8GwFbtyfrqC",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":870,"post_voting_power":{"amount":"10596498248","nai":"@@000000037","precision":6},"posting":{"account_auths":[["minnowbooster",1],["smartsteem",1],["streemian",1]],"key_auths":[["STM86wBKZAgxkoG91oZG1NRdczAXKMVqvBbWYnokNoKASC4ikQk6a",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":557878,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"0","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"0","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"30744769566","vesting_shares":{"amount":"10596498248","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":"41341267814","last_update_time":1565603280},"withdraw_routes":0,"withdrawn":"30744769566","witnesses_voted_for":3},{"active":{"account_auths":[],"key_auths":[["STM5dMNe1VoE2LXM6zmXpBtSQs45W2geVSL5Uf3wEQQj81u8KLpK4",1]],"weight_threshold":1},"balance":{"amount":"1823999","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2017-06-16T00:42:24","curation_rewards":20375,"delayed_votes":[],"delegated_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"downvote_manabar":{"current_mana":0,"last_update_time":1497573744},"governance_vote_expiration_ts":"1969-12-31T23:59:59","hbd_balance":{"amount":"195844","nai":"@@000000013","precision":3},"hbd_last_interest_payment":"2018-07-26T05:21:57","hbd_seconds":"0","hbd_seconds_last_update":"2018-07-26T05:21:57","id":199118,"is_smt":false,"json_metadata":"","last_account_recovery":"1970-01-01T00:00:00","last_account_update":"2018-02-21T23:56:39","last_owner_update":"1970-01-01T00:00:00","last_post":"2018-07-27T02:09:51","last_post_edit":"2018-07-27T02:09:51","last_root_post":"2018-06-01T00:12:33","last_vote_time":"2018-07-27T02:10:39","lifetime_vote_count":0,"memo_key":"STM8LNSx6qLCDhwit2VfyP2y3FWb5GTkAJgvH2sXr5uMMeRBEFMGA","mined":false,"name":"capcoms","next_vesting_withdrawal":"1969-12-31T23:59:59","owner":{"account_auths":[],"key_auths":[["STM7MuF8Ch1Rzx9AktwFKaq5uhkCTk5yuQkebZuYPy1yMjwc9DuAB",1]],"weight_threshold":1},"pending_claimed_accounts":0,"pending_transfers":0,"post_bandwidth":0,"post_count":1702,"post_voting_power":{"amount":"10138812355","nai":"@@000000037","precision":6},"posting":{"account_auths":[["busy.app",1]],"key_auths":[["STM8Qyp6AZEvumx41wTF4qGf2qyS3uwpeDUXVNu3ZU2bmxjZrQrsC",1]],"weight_threshold":1},"posting_json_metadata":"","posting_rewards":138107,"proxied_vsf_votes":[0,0,0,0],"proxy":"","received_vesting_shares":{"amount":"0","nai":"@@000000037","precision":6},"recovery_account":"steem","reset_account":"null","reward_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"reward_hive_balance":{"amount":"0","nai":"@@000000021","precision":3},"reward_vesting_balance":{"amount":"340458165","nai":"@@000000037","precision":6},"reward_vesting_hive":{"amount":"168","nai":"@@000000021","precision":3},"savings_balance":{"amount":"0","nai":"@@000000021","precision":3},"savings_hbd_balance":{"amount":"0","nai":"@@000000013","precision":3},"savings_hbd_last_interest_payment":"1970-01-01T00:00:00","savings_hbd_seconds":"0","savings_hbd_seconds_last_update":"1970-01-01T00:00:00","savings_withdraw_requests":0,"to_withdraw":"3683762075599","vesting_shares":{"amount":"10138812355","nai":"@@000000037","precision":6},"vesting_withdraw_rate":{"amount":"0","nai":"@@000000037","precision":6},"voting_manabar":{"current_mana":9222,"last_update_time":1532657439},"withdraw_routes":0,"withdrawn":"3683762075599","witnesses_voted_for":0},{"active":{"account_auths":[],"key_auths":[["STM75aMPUtSvort6jVZjBvjg4wWpVrZrhvHygZVAjVvAtdRmeMMmS",1]],"weight_threshold":1},"balance":{"amount":"1773503","nai":"@@000000021","precision":3},"can_vote":true,"comment_count":0,"created":"2016-07
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

@inertia186
Copy link
Author

inertia186 commented Jan 5, 2019

Just a quick note, I'm working on a branch that will embed hivemind, but it's currently blocked by steemit/hivemind#164. To try it out:

git clone https://gist.github.com/b88e7bfff8862858e54c59392e2bce20.git tintoy
cd tintoy
git checkout add-hivemind
docker build -t myname/tintoy:mybranch .
docker run -d -P myname/tintoy:mybranch

Then you can shell into the docker container and run:

source env.sh
./build-hivemind.sh
./start-hivemind.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment