Skip to content

Instantly share code, notes, and snippets.

@inertia186
Last active December 4, 2021 01:31
Show Gist options
  • 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"